aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2021-01-07 15:47:39 -0500
committerGravatar GitHub <noreply@github.com> 2021-01-07 21:47:39 +0100
commit85cbfcedb50b3a579d13697b4ec27c87450f68a7 (patch)
treef80a4438ef52a14ee0d5ea272a60f8e1ce429e83 /app/Controllers
parentef458992c12438f88780c52076cf105e3de8a60e (diff)
Update user query feature (#3338)
* Change user query wording There was some misunderstanding in the use of the user query feature, probably because of the wording. I've change it to make it more obvious. * Fix feedback when a query is bookmarked Before, the displayed query name was not the one intended. Now, the name is the one of the current bookmark * Document user queries I've added a few words on how to use the user queries because it seems there was some misunderstanding. See #3219
Diffstat (limited to 'app/Controllers')
-rwxr-xr-xapp/Controllers/configureController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php
index db390e4c1..5c8814895 100755
--- a/app/Controllers/configureController.php
+++ b/app/Controllers/configureController.php
@@ -312,7 +312,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController {
* storage. Before it is saved, the unwanted parameters are unset to keep
* lean data.
*/
- public function addQueryAction() {
+ public function bookmarkQueryAction() {
$category_dao = FreshRSS_Factory::createCategoryDao();
$feed_dao = FreshRSS_Factory::createFeedDao();
$tag_dao = FreshRSS_Factory::createTagDao();
@@ -329,7 +329,7 @@ class FreshRSS_configure_Controller extends Minz_ActionController {
FreshRSS_Context::$user_conf->queries = $queries;
FreshRSS_Context::$user_conf->save();
- Minz_Request::good(_t('feedback.conf.query_created', $query['name']),
+ Minz_Request::good(_t('feedback.conf.query_created', $params['name']),
array('c' => 'configure', 'a' => 'queries'));
}