diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 01:23:24 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 01:23:24 +0100 |
commit | b6173772bdef1eaf067573373ab500d67dfc454d (patch) | |
tree | 9ac42ba1d423bbf99edfec45910ebfd54fd67095 /app/view | |
parent | a66df8c97f4aa70977b25478fc3b6413ebd9b9db (diff) | |
download | wcms-b6173772bdef1eaf067573373ab500d67dfc454d.tar.gz wcms-b6173772bdef1eaf067573373ab500d67dfc454d.zip |
new feature : better tag view
clickable tags displayed in home interface
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/templates/home.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index ddf4e46..7aa3e69 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -94,7 +94,7 @@ <td class="hidephone"><a href="<?= $this->upage('pagedownload', $item->id()) ?>" download><img src="<?= Wcms\Model::iconpath() ?>download.png" class="icon"></a></td> <?php } if ($columns['tag']) { ?> - <td class="tag"><a title="<?= $item->tag('string') ?>"><?= $item->tag('sort') ?></a></td> + <td class="tag"><?= $opt->tag($item->tag('array')) ?></td> <?php } if ($columns['title']) { ?> <td class="title" title="<?= $item->title() ?>"><?= $item->title() ?></td> |