diff options
author | Ramiro Aparicio <rapariciog@gmail.com> | 2013-10-21 15:31:31 +0200 |
---|---|---|
committer | Ramiro Aparicio <rapariciog@gmail.com> | 2013-10-21 15:31:31 +0200 |
commit | 85edbb08c1768237e005fea3a763deff2c859c29 (patch) | |
tree | 182c7b23558bca8b4a9fc5664657768a76a69604 /core/ajax/share.php | |
parent | dfe38d13e220f1f4ef3c14235147fa9b05713a50 (diff) | |
download | nextcloud-server-85edbb08c1768237e005fea3a763deff2c859c29.tar.gz nextcloud-server-85edbb08c1768237e005fea3a763deff2c859c29.zip |
fix user displayName not being shown after add, added class for improved styling, fix strong for groups when english is not being used
Diffstat (limited to 'core/ajax/share.php')
-rw-r--r-- | core/ajax/share.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/ajax/share.php b/core/ajax/share.php index dbad8f2e971..7dd89deb8e5 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -305,8 +305,9 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo && $uid != OC_User::getUser()) { $shareWith[] = array( 'label' => $displayName, - 'value' => array('shareType' => OCP\Share::SHARE_TYPE_USER, - 'shareWith' => $uid) + 'value' => array( + 'shareType' => OCP\Share::SHARE_TYPE_USER, + 'shareWith' => $uid) ); $count++; } @@ -324,7 +325,7 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo || !is_array($_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP]) || !in_array($group, $_GET['itemShares'][OCP\Share::SHARE_TYPE_GROUP])) { $shareWith[] = array( - 'label' => $group.' ('.$l->t('group').')', + 'label' => $group, 'value' => array( 'shareType' => OCP\Share::SHARE_TYPE_GROUP, 'shareWith' => $group |