From 896f9d33637ec510937bc13a34f98f669795ab49 Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Fri, 8 Jan 2021 19:47:20 -0500 Subject: Add user query manual sorting (#3346) * Add user query manual sorting Before, to change the user query order, you'll have to delete them and recreate them. It was not really efficient. Now, you can drag and drop them to ease reordering. See #2216 and #2015 * Remove cancel action on user query configuration Before, the cancel action was useless since it was not wired. Now, there is no cancel action. See #2015 --- app/Controllers/configureController.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/Controllers/configureController.php') diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index 5c8814895..6358f48c2 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -275,6 +275,8 @@ class FreshRSS_configure_Controller extends Minz_ActionController { * checking if categories and feeds are still in use. */ public function queriesAction() { + Minz_View::appendScript(Minz_Url::display('/scripts/user.query.js?' . @filemtime(PUBLIC_PATH . '/scripts/user.query.js'))); + $category_dao = FreshRSS_Factory::createCategoryDao(); $feed_dao = FreshRSS_Factory::createFeedDao(); $tag_dao = FreshRSS_Factory::createTagDao(); -- cgit v1.2.3