diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-03-15 19:13:14 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-03-15 19:13:14 +0100 |
commit | 82ada0d75f249733936a0826b115b20cba0657ab (patch) | |
tree | b30d2b2e9b6bd69f0a4cde79ee6e54bbe8c4561f /data/templates/bookmarkcommondescriptionedit.tpl.php | |
parent | 3e9e2154a6ec7e4a1ab34b16f9e7ab9ea5c7f109 (diff) | |
download | semanticscuttle-82ada0d75f249733936a0826b115b20cba0657ab.tar.gz semanticscuttle-82ada0d75f249733936a0826b115b20cba0657ab.tar.bz2 |
Implement request #3054906: Show user's full name instead of nickname
Diffstat (limited to 'data/templates/bookmarkcommondescriptionedit.tpl.php')
-rw-r--r-- | data/templates/bookmarkcommondescriptionedit.tpl.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/templates/bookmarkcommondescriptionedit.tpl.php b/data/templates/bookmarkcommondescriptionedit.tpl.php index af5909a..807c58b 100644 --- a/data/templates/bookmarkcommondescriptionedit.tpl.php +++ b/data/templates/bookmarkcommondescriptionedit.tpl.php @@ -30,7 +30,8 @@ window.onload = function() { if(strlen($description['cdDatetime'])>0) { echo T_('Last modification:').' '.$description['cdDatetime'].', '; $lastUser = $userservice->getUser($description['uId']); - echo '<a href="'.createURL('profile', $lastUser['username']).'">'.$lastUser['username'].'</a>'; + echo '<a href="'.createURL('profile', $lastUser['username']).'">' + . SemanticScuttle_Model_UserArray::getName($lastUser) . '</a>'; } ?> </td> |