forked from ZwiiCMS-Team/ZwiiCMS
Merge branch 'master' into 10600
This commit is contained in:
commit
a7158cf366
@ -12,6 +12,8 @@ Cette version apporte aux modules une autonomie complète par rapport au noyau.
|
|||||||
## version 10.5.03
|
## version 10.5.03
|
||||||
- Correction :
|
- Correction :
|
||||||
- Options de configuration SMTP invisibles.
|
- Options de configuration SMTP invisibles.
|
||||||
|
- Modification :
|
||||||
|
- Libellé des erreurs 403 et 404.
|
||||||
|
|
||||||
## version 10.5.02
|
## version 10.5.02
|
||||||
- Corrections :
|
- Corrections :
|
||||||
|
@ -2256,8 +2256,8 @@ class core extends common {
|
|||||||
header('Location:' . helper::baseUrl() . $this->getData(['locale','page403']));
|
header('Location:' . helper::baseUrl() . $this->getData(['locale','page403']));
|
||||||
} else {
|
} else {
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'title' => 'Erreur 403',
|
'title' => 'Accès interdit',
|
||||||
'content' => template::speech('Vous n\'êtes pas autorisé à accéder à cette page...')
|
'content' => template::speech('Vous n\'êtes pas autorisé à consulter cette page (erreur 403)')
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2269,8 +2269,8 @@ class core extends common {
|
|||||||
header('Location:' . helper::baseUrl() . $this->getData(['locale','page404']));
|
header('Location:' . helper::baseUrl() . $this->getData(['locale','page404']));
|
||||||
} else {
|
} else {
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'title' => 'Erreur 404',
|
'title' => 'Page indisponible',
|
||||||
'content' => template::speech('Oups ! La page demandée est introuvable...')
|
'content' => template::speech('Oups ! La page demandée n\'existe pas ou est introuvable (erreur 404)')
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user