Bug : titre de page de maintenance non caché

This commit is contained in:
Fred Tempez 2021-03-22 11:02:29 +01:00
parent 1199a67ed6
commit f38f7ce547
1 changed files with 3 additions and 1 deletions

View File

@ -33,7 +33,9 @@ class maintenance extends common {
AND $this->getData(['page',$this->getData(['locale','page302'])]) ) {
$this->addOutput([
'display' => self::DISPLAY_LAYOUT_LIGHT,
'title' => $this->getData(['page',$this->getData(['locale','page302']),'title']),
'title' => $this->getData(['page',$this->getData(['locale','page302']),'hideTitle'])
? ''
: $this->getData(['page',$this->getData(['locale','page302']),'title']),
'content' => $this->getdata(['page',$this->getData(['locale','page302']),'content']),
'view' => 'index'
]);