diff options
Diffstat (limited to 'theme/admin/html/post/item.php')
-rw-r--r-- | theme/admin/html/post/item.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/theme/admin/html/post/item.php b/theme/admin/html/post/item.php index ae06752..41991d5 100644 --- a/theme/admin/html/post/item.php +++ b/theme/admin/html/post/item.php @@ -4,6 +4,9 @@ <div> <span class="brackets item-id">#<?=$POST['ATTR']['ID']?></span> <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> + <?php if($CATEGORY): ?> + <a class="brackets" href="<?=Application::getAdminURL("category/update.php?id={$CATEGORY['ATTR']['ID']}")?>" title="<?=$Language->text('update_category')?>"><?=escapeHTML($CATEGORY['ATTR']['NAME'])?></a> + <?php endif ?> <time class="brackets" datetime="<?=$POST['ATTR']['TIME_INSERT']?>"><?=parseDatetime($POST['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </div> </header> |