diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-03-24 13:50:56 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-03-24 13:50:56 +0100 |
commit | 5e71d1558a100dcfad1267464fa729eaf98f81b1 (patch) | |
tree | 3c19373bee969face48e9d238fe1add9f6cd698f /settings/js | |
parent | 302c19067a5ba81c0aa76ac93733049a2bba374b (diff) | |
parent | b262c30fa9780290ecd0411cee2c4da5c24066b2 (diff) | |
download | nextcloud-server-5e71d1558a100dcfad1267464fa729eaf98f81b1.tar.gz nextcloud-server-5e71d1558a100dcfad1267464fa729eaf98f81b1.zip |
Merge pull request #15149 from owncloud/fix-enable-for-group
Correctly get array of groups and send OCP\IGroup objects to enable meth...
Diffstat (limited to 'settings/js')
-rw-r--r-- | settings/js/apps.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js index 8d8b2ca7398..8431cbd4ff4 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -413,7 +413,7 @@ OC.Settings.Apps = OC.Settings.Apps || { var element = $(this).parent().find('input.enable'); var groups = $(this).val(); if (groups && groups !== '') { - groups = groups.split(','); + groups = groups.split('|'); } else { groups = []; } |