minor fixes
This commit is contained in:
parent
a3c93ab255
commit
20da75fcf3
|
@ -32,10 +32,10 @@ class pluginVersion extends Plugin {
|
||||||
if( ($ADMIN_CONTROLLER=='dashboard') && ($timeToCheck<time()) ) {
|
if( ($ADMIN_CONTROLLER=='dashboard') && ($timeToCheck<time()) ) {
|
||||||
$versions = $this->getVersion();
|
$versions = $this->getVersion();
|
||||||
Session::set('timeToCheck', time());
|
Session::set('timeToCheck', time());
|
||||||
Session::set('stableVersion', $versions['stableVersion']);
|
Session::set('version', $versions['version']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if( version_compare(Session::get('stableVersion'), BLUDIT_VERSION, '>') ) {
|
if( version_compare(Session::get('version'), BLUDIT_VERSION, '>') ) {
|
||||||
$html = '<div id="plugin-version"><a href="https://www.bludit.com">New version available</a></div>';
|
$html = '<div id="plugin-version"><a href="https://www.bludit.com">New version available</a></div>';
|
||||||
} else {
|
} else {
|
||||||
if(defined('BLUDIT_PRO')) {
|
if(defined('BLUDIT_PRO')) {
|
||||||
|
@ -54,10 +54,10 @@ class pluginVersion extends Plugin {
|
||||||
$output = TCP::http($url);
|
$output = TCP::http($url);
|
||||||
|
|
||||||
$json = json_decode($output, true);
|
$json = json_decode($output, true);
|
||||||
if (empty($json)) {
|
if (empty($json['stable'])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $json;
|
return $json['stable'];
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue