aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-11-02 23:43:10 +0100
committerThomas Lange <code@nerdmind.de>2017-11-02 23:43:10 +0100
commit9c5c2f3994c79ae092ca6d276b32b95a51348548 (patch)
tree3d2ed6968cac8542791d1dd3f2acf737f067e56e
parent42436de710d55693d54e9e8895db62858e07f435 (diff)
downloadblog-9c5c2f3994c79ae092ca6d276b32b95a51348548.tar.gz
blog-9c5c2f3994c79ae092ca6d276b32b95a51348548.tar.xz
blog-9c5c2f3994c79ae092ca6d276b32b95a51348548.zip
The "title" attribute has been added to the user link.
-rw-r--r--template/admin/html/page/item.php2
-rw-r--r--template/admin/html/post/item.php2
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>