diff options
author | Thomas Lange <code@nerdmind.de> | 2017-11-02 23:43:10 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-11-02 23:43:10 +0100 |
commit | 9c5c2f3994c79ae092ca6d276b32b95a51348548 (patch) | |
tree | 3d2ed6968cac8542791d1dd3f2acf737f067e56e /template/admin/html/post | |
parent | 42436de710d55693d54e9e8895db62858e07f435 (diff) | |
download | blog-9c5c2f3994c79ae092ca6d276b32b95a51348548.tar.gz blog-9c5c2f3994c79ae092ca6d276b32b95a51348548.tar.xz blog-9c5c2f3994c79ae092ca6d276b32b95a51348548.zip |
The "title" attribute has been added to the user link.
Diffstat (limited to 'template/admin/html/post')
-rw-r--r-- | template/admin/html/post/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
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> |