From 6de5d05666e628f2ef8f3844fd7e2f96f3e1a7df Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 28 Oct 2005 07:21:16 +0100 Subject: add dialogue to remove current feed, overall quick meny improvements (shamelessly stolen from GMail) --- backend.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'backend.php') diff --git a/backend.php b/backend.php index 6937a9af4..07f6028ed 100644 --- a/backend.php +++ b/backend.php @@ -1317,6 +1317,7 @@ if ($op == "dlg") { $id = $_GET["id"]; + $param = $_GET["param"]; if ($id == "quickAddFeed") { print "Feed URL: @@ -1326,6 +1327,31 @@ type=\"submit\" onclick=\"javascript:closeDlg()\" value=\"Cancel\">"; } + + if ($id == "quickDelFeed") { + + $param = db_escape_string($param); + + $result = db_query($link, "SELECT title FROM ttrss_feeds WHERE id = '$param'"); + + if ($result) { + + $f_title = db_fetch_result($result, 0, "title"); + + print "Remove current feed ($f_title)?  + + "; + } else { + print "Error: Feed $param not found.  + "; + } + } + } db_close($link); -- cgit v1.2.3