aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/PageBuilder.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-05-25 13:39:31 +0200
committerGitHub <noreply@github.com>2017-05-25 13:39:31 +0200
commit7481dd6e66c132ae064613de19e73dab0ca2de19 (patch)
treeae99823d461435577abd25b8bb24ef07692b99a1 /application/PageBuilder.php
parent61c15aa5554431893ea5ebe800a9a625dca5aff9 (diff)
parent6ccd0b218fbd34de750f55b78f3dc43bb3d9fa8e (diff)
downloadShaarli-7481dd6e66c132ae064613de19e73dab0ca2de19.tar.gz
Shaarli-7481dd6e66c132ae064613de19e73dab0ca2de19.tar.zst
Shaarli-7481dd6e66c132ae064613de19e73dab0ca2de19.zip
Merge pull request #878 from Lucas-C/master
Adding the ability to display subtags in the tagcloud
Diffstat (limited to 'application/PageBuilder.php')
-rw-r--r--application/PageBuilder.php2
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);