Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2013-03-28 00:17:58 +0400
committerArthur Schiwon <blizzz@owncloud.com>2013-03-28 00:17:58 +0400
commit84bc4c175aedbc629c6e2ac30f803ce4073351e3 (patch)
tree697926191f9d66da36fb06247d47b44472375313
parentc962f9db47955c1e434b7a9c311766ae0bfadb21 (diff)
Share Dialog: show Displayname instead of internal name
-rw-r--r--core/js/share.js2
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);