Restore module custom title display

This commit is contained in:
Hypolite Petovan 2019-03-04 06:47:40 -05:00
parent e157c89dc7
commit 8fdf1db032
1 changed files with 6 additions and 6 deletions

View File

@ -570,14 +570,14 @@ class App
$interval = 40000; $interval = 40000;
} }
// compose the page title from the sitename and the // Default title: current module called
// current module called if (empty($this->page['title']) && $this->module) {
if (!$this->module == '') { $this->page['title'] = ucfirst($this->module);
$this->page['title'] = $this->config->get('config', 'sitename') . ' (' . $this->module . ')';
} else {
$this->page['title'] = $this->config->get('config', 'sitename');
} }
// Prepend the sitename to the page title
$this->page['title'] = $this->config->get('config', 'sitename') . ($this->page['title'] ? ' | ' . $this->page['title'] : '');
if (!empty(Core\Renderer::$theme['stylesheet'])) { if (!empty(Core\Renderer::$theme['stylesheet'])) {
$stylesheet = Core\Renderer::$theme['stylesheet']; $stylesheet = Core\Renderer::$theme['stylesheet'];
} else { } else {