diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-10-19 00:38:23 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-10-19 00:38:23 +0200 |
commit | b9c9fdfe200d42bc75afe42d9ecfa98e3ccef8c1 (patch) | |
tree | f82955fded3d2a87e1286acf2b042811a50f93f6 /core/ajax | |
parent | 4827de4a276c83ad92eb1fa890dd3ade5d7a1514 (diff) | |
download | nextcloud-server-b9c9fdfe200d42bc75afe42d9ecfa98e3ccef8c1.tar.gz nextcloud-server-b9c9fdfe200d42bc75afe42d9ecfa98e3ccef8c1.zip |
Use get for loading dialog.
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/vcategories/favorites.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ajax/vcategories/favorites.php b/core/ajax/vcategories/favorites.php index 35b23e29c13..b72fc7a9fee 100644 --- a/core/ajax/vcategories/favorites.php +++ b/core/ajax/vcategories/favorites.php @@ -20,7 +20,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); -$type = isset($_POST['type']) ? $_POST['type'] : null; +$type = isset($_GET['type']) ? $_GET['type'] : null; if(is_null($type)) { $l = OC_L10N::get('core'); |