diff options
Diffstat (limited to 'app/view/templates/editrightbar.php')
-rw-r--r-- | app/view/templates/editrightbar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/templates/editrightbar.php b/app/view/templates/editrightbar.php index 26976e8..80a0b02 100644 --- a/app/view/templates/editrightbar.php +++ b/app/view/templates/editrightbar.php @@ -52,7 +52,7 @@ <ul> <?php foreach ($templates as $template => $id) { - if(!empty($id)) { + if(!empty($id) && !is_bool($id)) { ?> <li><?= $template ?> : <?= $id ?> <a href="<?= $this->uart('artedit', $id) ?>">✎</a></li> <?php |