diff options
| author | 2016-10-10 22:07:58 +0200 | |
|---|---|---|
| committer | 2016-10-10 22:07:58 +0200 | |
| commit | cbb6c26db79b5a74e588110d2cf8fc8cf9137ab8 (patch) | |
| tree | 99474af6a3199d0944b294c592fec4fc78dfe4b9 /app/Controllers/configureController.php | |
| parent | 189692e6adea2acb098bae5bc9ce75844080d040 (diff) | |
Fix share POST
https://github.com/FreshRSS/FreshRSS/issues/1289
Diffstat (limited to 'app/Controllers/configureController.php')
| -rwxr-xr-x | app/Controllers/configureController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index 147a2fe06..e73f106a6 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -139,7 +139,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController { */ public function sharingAction() { if (Minz_Request::isPost()) { - $params = Minz_Request::fetchGET(); + $params = Minz_Request::fetchPOST(); FreshRSS_Context::$user_conf->sharing = $params['share']; FreshRSS_Context::$user_conf->save(); invalidateHttpCache(); |
