diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-04 22:12:34 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-04 22:12:34 +0100 |
commit | fc56b60be55b4340d647d2017fdeb24b81eb84b6 (patch) | |
tree | bf4875de0115181549408f981804f19350b69b80 /app/view/templates/editrightbar.php | |
parent | 42e89ac398bdf2a98167b0b71123c98e297b2130 (diff) | |
download | wcms-fc56b60be55b4340d647d2017fdeb24b81eb84b6.tar.gz wcms-fc56b60be55b4340d647d2017fdeb24b81eb84b6.zip |
showeditmenu
Diffstat (limited to 'app/view/templates/editrightbar.php')
-rw-r--r-- | app/view/templates/editrightbar.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/view/templates/editrightbar.php b/app/view/templates/editrightbar.php index 9572678..26976e8 100644 --- a/app/view/templates/editrightbar.php +++ b/app/view/templates/editrightbar.php @@ -10,7 +10,7 @@ <?php foreach ($lasteditedartlist as $id) { ?> - <li><a href="<?= $this->uart('artedit', $id) ?>"><?= $id === $art->id() ? '★' : '✎' ?> <?= $id ?></a></li> + <li><a href="<?= $this->uart('artedit', $id) ?>"><?= $id === $art->id() ? '➤' : '✎' ?> <?= $id ?></a></li> <?php } @@ -32,7 +32,7 @@ echo '<ul>'; foreach ($idlist as $id) { if($id === $art->id()) { - echo '<li>★ '.$id.'</li>'; + echo '<li>➤ '.$id.'</li>'; } else { ?> <li><a href="<?= $this->uart('artedit', $id) ?>">✎ <?= $id ?></a></li> |