From 99c3263cbeefb916bc362f4e0550ba1267bcb7fb Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 29 Dec 2020 19:17:06 +0100 Subject: Trim rid param from user query (#3306) Caused by https://github.com/FreshRSS/FreshRSS/pull/3208 Before, the 'rid' parameter was saved as part of the user query. --- app/Controllers/configureController.php | 1 + 1 file changed, 1 insertion(+) (limited to 'app/Controllers') diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index ca3974f0e..db390e4c1 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -321,6 +321,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController { $queries[$key] = new FreshRSS_UserQuery($query, $feed_dao, $category_dao, $tag_dao); } $params = Minz_Request::fetchGET(); + unset($params['rid']); $params['url'] = Minz_Url::display(array('params' => $params)); $params['name'] = _t('conf.query.number', count($queries) + 1); $queries[] = new FreshRSS_UserQuery($params, $feed_dao, $category_dao, $tag_dao); -- cgit v1.2.3