Revert "suspend route 403 et 404"

This reverts commit 249c470035.
This commit is contained in:
Fred Tempez 2023-11-16 14:08:23 +01:00
parent 249c470035
commit 037a807c9a

View File

@ -885,13 +885,11 @@ class core extends common
}
if ($access === false) {
// Bascule sur le site d'accueil
/*
if ($_SESSION['ZWII_SITE_CONTENT'] !== 'home') {
$_SESSION['ZWII_SITE_CONTENT'] = 'home';
header('Location:' . helper::baseUrl() . $this->getUrl());
exit();
}
*/
http_response_code(403);
if ($accessInfo['userName']) {
$this->addOutput([
@ -914,12 +912,11 @@ class core extends common
}
} elseif ($this->output['content'] === '') {
// Bascule sur le site d'accueil pour afficher la page d'erreur
/*
if ($_SESSION['ZWII_SITE_CONTENT'] !== 'home') {
$_SESSION['ZWII_SITE_CONTENT'] = 'home';
header('Location:' . helper::baseUrl() . $this->getUrl());
exit();
}*/
}
http_response_code(404);
if (
$this->getData(['config', 'page404']) !== 'none'