Désactiver la redirection du routage en cas de 403 ou de 404

This commit is contained in:
Fred Tempez 2023-11-23 15:08:56 +01:00
parent 4ed8198321
commit cfc6a185aa

View File

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