aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/home.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2019-07-13 17:10:05 +0200
committervincent-peugnet <v.peugnet@free.fr>2019-07-13 17:10:05 +0200
commit7ccb591697227fcc77125e6b6fbe33f9fbe13ca4 (patch)
tree97bd0ffb8d828a93af2a372f5282123cd1039743 /app/view/templates/home.php
parent917e0b8dc3e11a6c14af29a6d546b3e78d4fbedd (diff)
downloadwcms-7ccb591697227fcc77125e6b6fbe33f9fbe13ca4.tar.gz
wcms-7ccb591697227fcc77125e6b6fbe33f9fbe13ca4.zip
icon-path fix
Diffstat (limited to 'app/view/templates/home.php')
-rw-r--r--app/view/templates/home.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php
index c5571a8..17dfc2d 100644
--- a/app/view/templates/home.php
+++ b/app/view/templates/home.php
@@ -117,11 +117,11 @@
<tr>
<td><input type="checkbox" name="id[]" value="<?= $item->id() ?>" id="id_<?= $item->id() ?>"></td>
<td><label title="<?= $item->title() ?>" for="id_<?= $item->id() ?>"><?= $item->id() ?></label></td>
- <td><a href="<?= $this->uart('artedit', $item->id()) ?>"><img src="assets/icons/edit.png" class="icon"></a></td>
- <td><a href="<?= $this->uart('artread/', $item->id()) ?>" target="_blank"><img src="assets/icons/read.png" class="icon"></a></td>
+ <td><a href="<?= $this->uart('artedit', $item->id()) ?>"><img src="<?= Model::iconpath() ?>edit.png" class="icon"></a></td>
+ <td><a href="<?= $this->uart('artread/', $item->id()) ?>" target="_blank"><img src="<?= Model::iconpath() ?>read.png" class="icon"></a></td>
<td class="delete"><a href="<?= $this->uart('artdelete', $item->id()) ?>" >✖</a></td>
<?php if($user->issupereditor()) { ?>
- <td><a href="<?= $this->uart('artdownload', $item->id()) ?>" download><img src="assets/icons/download.png" class="icon"></a></td>
+ <td><a href="<?= $this->uart('artdownload', $item->id()) ?>" download><img src="<?= 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>
<?php } if($columns['title']) { ?>