diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 13:32:58 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-29 13:32:58 +0100 |
commit | d9a0fb2efc8c09ab00b76bb68ec0d1f24ef7d1a5 (patch) | |
tree | 8840c03f8af7559a9ee8aad539e3945a7cda873a /app/view | |
parent | 5aa781242e42c95c6f2e04a30510d853a89fa944 (diff) | |
download | wcms-d9a0fb2efc8c09ab00b76bb68ec0d1f24ef7d1a5.tar.gz wcms-d9a0fb2efc8c09ab00b76bb68ec0d1f24ef7d1a5.zip |
new feature : author clickables in home view
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/templates/home.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index ceaa98c..6b3bca3 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -124,8 +124,8 @@ <td class="secure"><?= $item->secure('string') ?></td> <?php } if ($columns['authors']) { ?> - <td class="authors"><?= $item->authors('string') ?></td> - <?php } + <td class="authors"><?= $opt->author($item->authors('array')) ?></td> + <?php } if ($columns['visitcount']) { ?> <td class="visitcount"><?= $item->visitcount() ?></td> <?php } |