diff options
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> |