From 9b9353adbb6e26180b00b42dd0be25a366f1044c Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Tue, 18 Feb 2020 11:05:42 +0100 Subject: [PATCH] [10.0.034.dev] annulation dernier commit --- core/class/helper.class.php | 8 ++++---- core/core.php | 7 +------ 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/core/class/helper.class.php b/core/class/helper.class.php index a30174a0..392a2c28 100644 --- a/core/class/helper.class.php +++ b/core/class/helper.class.php @@ -130,8 +130,8 @@ class helper { * Renvoie le numéro de version de Zwii est en ligne * @return string */ - public static function getOnlineVersion($channel = '') { - return (@file_get_contents('http://zwiicms.com/update' . $channel . '/version')); + public static function getOnlineVersion() { + return (@file_get_contents('http://zwiicms.com/update/version')); } @@ -139,8 +139,8 @@ class helper { * Check si une nouvelle version de Zwii est disponible * @return bool */ - public static function checkNewVersion($channel = '') { - if($version = helper::getOnlineVersion($channel)) { + public static function checkNewVersion() { + if($version = helper::getOnlineVersion()) { //return (trim($version) !== common::ZWII_VERSION); return ((version_compare(common::ZWII_VERSION,$version)) === -1); } diff --git a/core/core.php b/core/core.php index e139064b..96c40e78 100644 --- a/core/core.php +++ b/core/core.php @@ -35,11 +35,6 @@ class common { // Numéro de version const ZWII_VERSION = '10.0.034.dev'; - // Laisser vide pour la version officiel - // v10 version 10 - // v11 verison 11 - const ZWII_UPDATE_CHANNEL = 'v10'; - public static $actions = []; public static $coreModuleIds = [ 'config', @@ -2251,7 +2246,7 @@ class layout extends common { if( $this->getData(['config','autoUpdate']) && $lastAutoUpdate > $this->getData(['core','lastAutoUpdate']) + 86400 ) { $this->setData(['core','lastAutoUpdate',$lastAutoUpdate]); - if ( helper::checkNewVersion(common::ZWII_UPDATE_CHANNEL) ) { + if ( helper::checkNewVersion() ) { $rightItems .= '
  • ' . template::ico('update colorRed') . '
  • '; } }