diff options
Diffstat (limited to 'settings/ajax/disableapp.php')
-rw-r--r-- | settings/ajax/disableapp.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php index 263e2c27479..c1e5bc8eac7 100644 --- a/settings/ajax/disableapp.php +++ b/settings/ajax/disableapp.php @@ -1,5 +1,5 @@ <?php -OC_JSON::checkAdminUser(); +OCP\JSON::checkAdminUser(); OCP\JSON::callCheck(); if (!array_key_exists('appid', $_POST)) { @@ -11,4 +11,4 @@ $appId = $_POST['appid']; $appId = OC_App::cleanAppId($appId); OC_App::disable($appId); -OC_JSON::success();
\ No newline at end of file +OC_JSON::success(); |