constante ZWII_UPDATE_URL

This commit is contained in:
fredtempez 2021-05-27 22:45:01 +02:00
parent 26ced2987b
commit aeddcfc20a
2 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ class helper {
* @return string
*/
public static function getOnlineVersion() {
return (helper::urlGetContents('http://zwiicms.fr/update/'. common::ZWII_UPDATE_CHANNEL . '/version'));
return (helper::urlGetContents(common::ZWII_UPDATE_URL . common::ZWII_UPDATE_CHANNEL . '/version'));
}

View File

@ -1339,7 +1339,7 @@ class common {
}
}
// Contrôle des options php.ini pour la mise à jour auto
if (helper::urlGetContents('http://zwiicms.fr/update/' . common::ZWII_UPDATE_CHANNEL . '/version') === false) {
if (helper::urlGetContents(common::ZWII_UPDATE_URL . common::ZWII_UPDATE_CHANNEL . '/version') === false) {
$this->setData(['config','autoUpdate',false]);
}