summaryrefslogtreecommitdiffstats
path: root/settings/Controller
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-04-25 21:06:24 +0200
committerLukas Reschke <lukas@statuscode.ch>2017-04-26 20:07:50 +0200
commit732c92e93abfc200e4eee90a8e727ef562dc5604 (patch)
tree1ecd9e4f31efd62803c8693637fb4e845349e982 /settings/Controller
parentda67264a238d0351029b5b452aa254caa652df1c (diff)
downloadnextcloud-server-732c92e93abfc200e4eee90a8e727ef562dc5604.tar.gz
nextcloud-server-732c92e93abfc200e4eee90a8e727ef562dc5604.zip
Make disableapp.php accept arrays
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'settings/Controller')
-rw-r--r--settings/Controller/AppSettingsController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/Controller/AppSettingsController.php b/settings/Controller/AppSettingsController.php
index f3ef715a235..4cd4afd01dd 100644
--- a/settings/Controller/AppSettingsController.php
+++ b/settings/Controller/AppSettingsController.php
@@ -370,9 +370,9 @@ class AppSettingsController extends Controller {
if($app['id'] === $identifier) {
if($newCategory) {
$app['newCategory'] = true;
- $app['bundleId'] = $bundle->getIdentifier();
$app['categoryName'] = $bundle->getName();
}
+ $app['bundleId'] = $bundle->getIdentifier();
$newCategory = false;
$apps[] = $app;
continue;