add the module to the page title

这个提交包含在:
Tobias Diekershoff 2015-12-01 14:19:06 +01:00
父节点 146f386e37
当前提交 51d392b97f
共有 1 个文件被更改,包括 8 次插入1 次删除

查看文件

@ -737,7 +737,14 @@ if(! class_exists('App')) {
if($interval < 10000)
$interval = 40000;
$this->page['title'] = $this->config['sitename'];
// compose the page title from the sitename and the
// current module called
if (!$this->module=='')
{
$this->page['title'] = $this->config['sitename'].' ('.$this->module.')';
} else {
$this->page['title'] = $this->config['sitename'];
}
/* put the head template at the beginning of page['htmlhead']
* since the code added by the modules frequently depends on it