Skip to content

Commit

Permalink
[#2375] nicer user link formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Aug 10, 2012
1 parent c547903 commit 58381ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/helpers.py
Expand Up @@ -599,7 +599,7 @@ def linked_user(user, maxlength=0):
displayname = user.display_name
if maxlength and len(user.display_name) > maxlength:
displayname = displayname[:maxlength] + '...'
return _icon + link_to(displayname,
return _icon + u' ' + link_to(displayname,
url_for(controller='user', action='read', id=_name))

def linked_authorization_group(authgroup, maxlength=0):
Expand Down

0 comments on commit 58381ff

Please sign in to comment.