From 6016d5408e0586b169007e3789fa315376758ece Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 20 Aug 2007 16:04:37 +0100 Subject: add (disabled) dialog to recategorize feeds via draganddrop --- modules/pref-feeds.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) (limited to 'modules') diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php index fb791a930..76e22d7d4 100644 --- a/modules/pref-feeds.php +++ b/modules/pref-feeds.php @@ -517,6 +517,65 @@ } + if ($subop == "categorizeDlg") { + $action = $_REQUEST["action"]; + + print "
".__('Category editor')."
"; + + print "
"; + + $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories + WHERE owner_uid = ".$_SESSION["uid"]." + ORDER BY title"); + + if (db_num_rows($result) != 0) { + + print ""; + + + print ""; + + print "
"; + } + + return; + } + if ($subop == "editCats") { $action = $_REQUEST["action"]; @@ -964,6 +1023,11 @@ print " "; + +/* print " "; */ + } print ""; -- cgit v1.2.3-54-g00ecf