summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-30 06:29:24 +0100
committerAndrew Dolgov <[email protected]>2005-12-30 06:29:24 +0100
commita7f22b70ec986f67601e65f91308c81844c18e76 (patch)
treebb8aebe0c798866258580465daad0ad182c1bb5f /backend.php
parent018e1b8ce474cd41de6e34deb0e2ab5a0bc5d1bf (diff)
browser interface fixes
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/backend.php b/backend.php
index 7f5dfe376..596daaced 100644
--- a/backend.php
+++ b/backend.php
@@ -1504,6 +1504,8 @@
if ($subop == "massSubscribe") {
$ids = split(",", db_escape_string($_GET["ids"]));
+ $subscribed = array();
+
foreach ($ids as $id) {
$result = db_query($link, "SELECT feed_url,title FROM ttrss_feeds
WHERE id = '$id'");
@@ -1518,8 +1520,21 @@
$result = db_query($link,
"INSERT INTO ttrss_feeds (owner_uid,feed_url,title,cat_id)
VALUES ('".$_SESSION["uid"]."', '$feed_url', '$title', NULL)");
+
+ array_push($subscribed, $title);
}
}
+
+ if (count($subscribed) > 0) {
+ print "<div class=\"notice\">";
+ print "<b>Subscribed to feeds:</b>";
+ print "<ul class=\"nomarks\">";
+ foreach ($subscribed as $title) {
+ print "<li>$title</li>";
+ }
+ print "</ul>";
+ print "</div>";
+ }
}
if ($subop == "browse") {