diff options
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/vcategories/delete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/vcategories/delete.php b/core/ajax/vcategories/delete.php index 602ee1d74a4..75def433d30 100644 --- a/core/ajax/vcategories/delete.php +++ b/core/ajax/vcategories/delete.php @@ -17,7 +17,7 @@ function debug($msg) { require_once('../../../lib/base.php'); OC_JSON::checkLoggedIn(); -$app = isset($_GET['app'])?$_GET['app']:null; +$app = isset($_POST['app'])?$_POST['app']:null; $categories = isset($_POST['categories'])?$_POST['categories']:null; if(is_null($app)) { bailOut(OC_Contacts_App::$l10n->t('Application name not provided.')); |