diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-03-27 21:17:58 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-03-27 22:55:05 +0100 |
commit | 3af61a0a7cd1833b347c6b1f1c46626471c60ea1 (patch) | |
tree | 281c120705dd738f92e465cc3a140975d1935e4b /core | |
parent | 78c694b6eef18f6cc91e939aaa8abe33e81bc7f5 (diff) | |
download | nextcloud-server-3af61a0a7cd1833b347c6b1f1c46626471c60ea1.tar.gz nextcloud-server-3af61a0a7cd1833b347c6b1f1c46626471c60ea1.zip |
Share Dialog: show Displayname instead of internal name
Diffstat (limited to 'core')
-rw-r--r-- | core/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js index 8e767663f12..39df5e4c5bf 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -271,7 +271,7 @@ OC.Share={ } var collectionList = $('#shareWithList li').filterAttr('data-collection', item); if (collectionList.length > 0) { - $(collectionList).append(', '+shareWith); + $(collectionList).append(', '+shareWithDisplayName); } else { var html = '<li style="clear: both;" data-collection="'+item+'">'+t('core', 'Shared in {item} with {user}', {'item': item, user: shareWithDisplayName})+'</li>'; $('#shareWithList').prepend(html); |