summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-29 10:26:09 +0100
committerAndrew Dolgov <[email protected]>2005-11-29 10:26:09 +0100
commita88c1f36443c5d761d4224df5b887d6b558431fe (patch)
tree66071ab4e886004920c8204d5d833461d7505d6c /backend.php
parentf932bc9ff3632ccee1d1c9a00750869ef43ca484 (diff)
update_interval < 0 disables feed updates, show only 20 subscribed feeds in user details
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index aa2a1b3bc..5a88f38ac 100644
--- a/backend.php
+++ b/backend.php
@@ -1208,6 +1208,9 @@
if (strtoupper($upd_intl) == "DEFAULT")
$upd_intl = 0;
+ if (strtoupper($upd_intl) == "DISABLED")
+ $upd_intl = -1;
+
if (strtoupper($purge_intl) == "DEFAULT")
$purge_intl = 0;
@@ -1535,6 +1538,9 @@
if ($line["update_interval"] == "0")
$line["update_interval"] = "Default";
+ if ($line["update_interval"] == "-1")
+ $line["update_interval"] = "Disabled";
+
print "<td><a href=\"javascript:editFeed($feed_id);\">" .
$line["update_interval"] . "</a></td>";
@@ -3021,7 +3027,7 @@
print "<h1>Subscribed feeds</h1>";
$result = db_query($link, "SELECT id,title,feed_url FROM ttrss_feeds
- WHERE owner_uid = '$uid' ORDER BY title");
+ WHERE owner_uid = '$uid' ORDER BY title LIMIT 20");
print "<ul class=\"nomarks\">";
@@ -3038,6 +3044,12 @@
print "<li>$feed_icon&nbsp;<a href=\"".$line["feed_url"]."\">".$line["title"]."</a></li>";
}
+ if (db_num_rows($result) < $num_feeds) {
+ // FIXME - add link to show ALL subscribed feeds here somewhere
+ print "<li><img
+ class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">&nbsp;...</li>";
+ }
+
print "</ul>";
print "</div>";