diff options
author | Arthur <arthur@hoa.ro> | 2016-07-23 10:31:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-23 10:31:33 +0200 |
commit | 8562009682b788ce8fb9da0f312bd6cd5cc53b3a (patch) | |
tree | f9a18df935dc74ecb7af4847282a5baac1d34198 /application | |
parent | d5307a4e001e755ebbcead04172e9a3ac49a14da (diff) | |
parent | 97ef33bb7296cea995b19932a95c6aaec7242dc6 (diff) | |
download | Shaarli-8562009682b788ce8fb9da0f312bd6cd5cc53b3a.tar.gz Shaarli-8562009682b788ce8fb9da0f312bd6cd5cc53b3a.tar.zst Shaarli-8562009682b788ce8fb9da0f312bd6cd5cc53b3a.zip |
Merge pull request #601 from ArthurHoaro/hotfix/title-missing
Fixes #600 - Shaarli's title is not set with the new config manager
Diffstat (limited to 'application')
-rw-r--r-- | application/PageBuilder.php | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/application/PageBuilder.php b/application/PageBuilder.php index 7cd88370..1ca0260a 100644 --- a/application/PageBuilder.php +++ b/application/PageBuilder.php | |||
@@ -68,18 +68,12 @@ class PageBuilder | |||
68 | $this->tpl->assign('source', index_url($_SERVER)); | 68 | $this->tpl->assign('source', index_url($_SERVER)); |
69 | $this->tpl->assign('version', shaarli_version); | 69 | $this->tpl->assign('version', shaarli_version); |
70 | $this->tpl->assign('scripturl', index_url($_SERVER)); | 70 | $this->tpl->assign('scripturl', index_url($_SERVER)); |
71 | $this->tpl->assign('pagetitle', 'Shaarli'); | ||
72 | $this->tpl->assign('privateonly', !empty($_SESSION['privateonly'])); // Show only private links? | 71 | $this->tpl->assign('privateonly', !empty($_SESSION['privateonly'])); // Show only private links? |
73 | if ($this->conf->exists('general.title')) { | 72 | $this->tpl->assign('pagetitle', $this->conf->get('general.title', 'Shaarli')); |
74 | $this->tpl->assign('pagetitle', $this->conf->get('general.title')); | ||
75 | } | ||
76 | if ($this->conf->exists('general.header_link')) { | 73 | if ($this->conf->exists('general.header_link')) { |
77 | $this->tpl->assign('titleLink', $this->conf->get('general.header_link')); | 74 | $this->tpl->assign('titleLink', $this->conf->get('general.header_link')); |
78 | } | 75 | } |
79 | if ($this->conf->exists('pagetitle')) { | 76 | $this->tpl->assign('shaarlititle', $this->conf->get('general.title', 'Shaarli')); |
80 | $this->tpl->assign('pagetitle', $this->conf->get('pagetitle')); | ||
81 | } | ||
82 | $this->tpl->assign('shaarlititle', $this->conf->get('title', 'Shaarli')); | ||
83 | $this->tpl->assign('openshaarli', $this->conf->get('security.open_shaarli', false)); | 77 | $this->tpl->assign('openshaarli', $this->conf->get('security.open_shaarli', false)); |
84 | $this->tpl->assign('showatom', $this->conf->get('feed.show_atom', false)); | 78 | $this->tpl->assign('showatom', $this->conf->get('feed.show_atom', false)); |
85 | $this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false)); | 79 | $this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false)); |