]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix the initial list of groups
authorJoas Schilling <nickvergessen@owncloud.com>
Thu, 2 Apr 2015 13:47:48 +0000 (15:47 +0200)
committerJoas Schilling <nickvergessen@owncloud.com>
Thu, 2 Apr 2015 13:47:48 +0000 (15:47 +0200)
settings/js/apps.js

index 8431cbd4ff40f8290349d152ae51e731c05f5d33..3db84e8acd57a07dcd63a2fc7fec92cc1557e1de 100644 (file)
@@ -132,7 +132,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
                        page.find("label[for='groups_enable-"+app.id+"']").hide();
                        page.find(".groups-enable").attr('checked', null);
                } else {
-                       page.find('#group_select').val((app.groups || []).join(','));
+                       page.find('#group_select').val((app.groups || []).join('|'));
                        if (app.active) {
                                if (app.groups.length) {
                                        OC.Settings.Apps.setupGroupsSelect(page.find('#group_select'));