Merge branch '10600' into 11000
This commit is contained in:
commit
d378cd94a2
@ -25,6 +25,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 :
|
||||||
|
@ -2360,8 +2360,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)')
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2373,8 +2373,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…
Reference in New Issue
Block a user