diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/admin/html/page/item.php | 2 | ||||
-rw-r--r-- | template/admin/html/post/item.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/admin/html/page/item.php b/template/admin/html/page/item.php index e7032f0..a92b2fd 100644 --- a/template/admin/html/page/item.php +++ b/template/admin/html/page/item.php @@ -3,7 +3,7 @@ <h2><i class="fa fa-file-text-o"></i><?=escapeHTML($PAGE['ATTR']['NAME'])?></h2> <div> <span class="brackets item-id">#<?=$PAGE['ATTR']['ID']?></span> - <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> + <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> <time class="brackets" datetime="<?=$PAGE['ATTR']['TIME_INSERT']?>"><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </div> </header> diff --git a/template/admin/html/post/item.php b/template/admin/html/post/item.php index e81513a..8258d30 100644 --- a/template/admin/html/post/item.php +++ b/template/admin/html/post/item.php @@ -3,7 +3,7 @@ <h2><i class="fa fa-newspaper-o"></i><?=escapeHTML($POST['ATTR']['NAME'])?></h2> <div> <span class="brackets item-id">#<?=$POST['ATTR']['ID']?></span> - <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> + <a class="brackets" href="<?=Application::getAdminURL("user/update.php?id={$USER['ATTR']['ID']}")?>" title="<?=$Language->text('update_user')?>"><?=escapeHTML($USER['ATTR']['FULLNAME'])?></a> <time class="brackets" datetime="<?=$POST['ATTR']['TIME_INSERT']?>"><?=parseDatetime($POST['ATTR']['TIME_INSERT'], $Language->text('date_format'))?></time> </div> </header> |