From 3af61a0a7cd1833b347c6b1f1c46626471c60ea1 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon <blizzz@owncloud.com> Date: Wed, 27 Mar 2013 21:17:58 +0100 Subject: [PATCH] Share Dialog: show Displayname instead of internal name --- core/js/share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/share.js b/core/js/share.js index 8e767663f1..39df5e4c5b 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); -- GitLab