diff --git a/core/core.php b/core/core.php index bea1c765..311b8d99 100644 --- a/core/core.php +++ b/core/core.php @@ -51,11 +51,11 @@ class common const ACCESS_TIMER = 1800; // Numéro de version - const ZWII_VERSION = '13.3.07'; + const ZWII_VERSION = '13.3.08'; // URL autoupdate const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/cms-update/raw/branch/master/'; - const ZWII_UPDATE_CHANNEL = 'v13'; + const ZWII_UPDATE_CHANNEL = 'v134'; // Valeurs possibles multiple de 10, 10 autorise 9 profils, 100 autorise 99 profils const MAX_PROFILS = 10; diff --git a/core/module/install/view/update/update.js.php b/core/module/install/view/update/update.js.php index 5d844f2b..440574bf 100644 --- a/core/module/install/view/update/update.js.php +++ b/core/module/install/view/update/update.js.php @@ -37,7 +37,7 @@ function step(i, data) { // Vérification du code d'erreur HTTP pour gérer la déconnexion if (xhr.status === 401 || xhr.status === 403) { alert("Votre session a expiré. Veuillez vous reconnecter."); - window.location.href = "/login"; // Redirige vers la page de connexion + window.location.href = "?user/login"; // Redirige vers la page de connexion } else { // Appel de la fonction de gestion d'erreur showError(i, xhr.responseText, errors);