summaryrefslogtreecommitdiff
path: root/modules/pref-feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-02 20:16:45 +0100
committerAndrew Dolgov <[email protected]>2007-03-02 20:16:45 +0100
commit0d32b41e36fffa800991267b637d9344cb88fd2e (patch)
tree645e10ade87573dca2149b18a1c4a3973984c55a /modules/pref-feeds.php
parentb05d782d90348a1c1a4d16b0e39695cbdf663629 (diff)
interface tweaks, add info/question/exclamation pics
Diffstat (limited to 'modules/pref-feeds.php')
-rw-r--r--modules/pref-feeds.php26
1 files changed, 11 insertions, 15 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 3b5ed89d4..d1ef0eae0 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -35,14 +35,15 @@
}
if (count($subscribed) > 0) {
- print "<div class=\"notice\">";
- print "<b>Subscribed to feeds:</b>";
- print "<ul class=\"nomarks\">";
+ $msg = "<b>Subscribed to feeds:</b>".
+ "<ul class=\"nomarks\">";
+
foreach ($subscribed as $title) {
- print "<li>$title</li>";
+ $msg .= "<li>$title</li>";
}
- print "</ul>";
- print "</div>";
+ $msg .= "</ul>";
+
+ print format_notice($msg);
}
}
@@ -442,11 +443,9 @@
}
if (subscribe_to_feed($link, $feed_url, $cat_id)) {
- print "Subscribed to <b>$feed_url</b>.";
+ print format_notice("Subscribed to <b>$feed_url</b>.");
} else {
- print "<div class=\"warning\">
- Already subscribed to <b>$feed_url</b>.
- </div>";
+ print format_warning("Already subscribed to <b>$feed_url</b>.");
}
if ($p_from != 'tt-rss') {
@@ -548,9 +547,7 @@
} else {
- print "<div class=\"warning\">
- Category <b>$feed_cat</b> already exists in the database.
- </div>";
+ print format_warning("Category <b>$feed_cat</b> already exists in the database.");
}
}
@@ -577,8 +574,7 @@
WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
} else {
- print "<div class=\"warning\">
- Unable to delete non empty feed categories.</div>";
+ print format_warning("Unable to delete non empty feed categories.");
}