summaryrefslogtreecommitdiffstats
path: root/settings/ajax/disableapp.php
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2014-05-21 12:14:10 +0200
committerGeorg Ehrke <developer@georgehrke.com>2014-05-31 12:17:54 +0200
commit2bcfd8e084b27ed89cf6e62bc9ab2c681d5a8361 (patch)
treebff130f767536eca5892511e0de26bab317b9697 /settings/ajax/disableapp.php
parentb9f059bd3ee75247058bd5eb9908f6c33ffa08e2 (diff)
downloadnextcloud-server-2bcfd8e084b27ed89cf6e62bc9ab2c681d5a8361.tar.gz
nextcloud-server-2bcfd8e084b27ed89cf6e62bc9ab2c681d5a8361.zip
make it possible to update shipped apps via the appstore
Diffstat (limited to 'settings/ajax/disableapp.php')
-rw-r--r--settings/ajax/disableapp.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php
index 466a719157d..263e2c27479 100644
--- a/settings/ajax/disableapp.php
+++ b/settings/ajax/disableapp.php
@@ -2,6 +2,13 @@
OC_JSON::checkAdminUser();
OCP\JSON::callCheck();
-OC_App::disable(OC_App::cleanAppId($_POST['appid']));
+if (!array_key_exists('appid', $_POST)) {
+ OC_JSON::error();
+ exit;
+}
-OC_JSON::success();
+$appId = $_POST['appid'];
+$appId = OC_App::cleanAppId($appId);
+
+OC_App::disable($appId);
+OC_JSON::success(); \ No newline at end of file