diff options
author | Lucas Cimon <lucas.cimon@gmail.com> | 2017-05-18 20:28:11 +0200 |
---|---|---|
committer | Lucas Cimon <lucas.cimon@gmail.com> | 2017-05-24 13:09:35 +0200 |
commit | 6ccd0b218fbd34de750f55b78f3dc43bb3d9fa8e (patch) | |
tree | ae99823d461435577abd25b8bb24ef07692b99a1 /application/PageBuilder.php | |
parent | 61c15aa5554431893ea5ebe800a9a625dca5aff9 (diff) | |
download | Shaarli-6ccd0b218fbd34de750f55b78f3dc43bb3d9fa8e.tar.gz Shaarli-6ccd0b218fbd34de750f55b78f3dc43bb3d9fa8e.tar.zst Shaarli-6ccd0b218fbd34de750f55b78f3dc43bb3d9fa8e.zip |
Adding ability to display subtags in tagcloud
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 50e3f124..c86621a2 100644 --- a/application/PageBuilder.php +++ b/application/PageBuilder.php | |||
@@ -89,7 +89,7 @@ class PageBuilder | |||
89 | $this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false)); | 89 | $this->tpl->assign('hide_timestamps', $this->conf->get('privacy.hide_timestamps', false)); |
90 | $this->tpl->assign('token', getToken($this->conf)); | 90 | $this->tpl->assign('token', getToken($this->conf)); |
91 | if ($this->linkDB !== null) { | 91 | if ($this->linkDB !== null) { |
92 | $this->tpl->assign('tags', $this->linkDB->allTags()); | 92 | $this->tpl->assign('tags', $this->linkDB->linksCountPerTag()); |
93 | } | 93 | } |
94 | // To be removed with a proper theme configuration. | 94 | // To be removed with a proper theme configuration. |
95 | $this->tpl->assign('conf', $this->conf); | 95 | $this->tpl->assign('conf', $this->conf); |