diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-03 11:42:21 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-01-05 16:16:23 +0100 |
commit | a0df06517bada0f811b464017ce385290e02c2bf (patch) | |
tree | 6bc3e99a9e9b93eb3e0f531f67a607dec748f407 /application/PageBuilder.php | |
parent | adc4aee80f7cd3242f65f0b316af2b560a64712c (diff) | |
download | Shaarli-a0df06517bada0f811b464017ce385290e02c2bf.tar.gz Shaarli-a0df06517bada0f811b464017ce385290e02c2bf.tar.zst Shaarli-a0df06517bada0f811b464017ce385290e02c2bf.zip |
Minor improvements regarding #705 (coding style, unit tests, etc.)
Diffstat (limited to 'application/PageBuilder.php')
-rw-r--r-- | application/PageBuilder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/PageBuilder.php b/application/PageBuilder.php index e226a77d..32c7f9f1 100644 --- a/application/PageBuilder.php +++ b/application/PageBuilder.php | |||
@@ -79,7 +79,7 @@ class PageBuilder | |||
79 | $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)); |
80 | $this->tpl->assign('token', getToken($this->conf)); | 80 | $this->tpl->assign('token', getToken($this->conf)); |
81 | // To be removed with a proper theme configuration. | 81 | // To be removed with a proper theme configuration. |
82 | $this->tpl->assign('theme', $this->conf->get('resource.theme', 'default')); | 82 | $this->tpl->assign('conf', $this->conf); |
83 | } | 83 | } |
84 | 84 | ||
85 | /** | 85 | /** |