summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-13 13:01:10 +0100
committerAndrew Dolgov <[email protected]>2006-08-13 13:01:10 +0100
commit0da49badd4ff20af850874539a7dda44fcc79e96 (patch)
treedddaa5f08fd3668fc07209e0044d21f65c37800e /backend.php
parent7da377ca8b4668d3e21339531b1ba5d8518b9740 (diff)
handle hidden feed attribute, fix broken mobile version
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php31
1 files changed, 27 insertions, 4 deletions
diff --git a/backend.php b/backend.php
index 721a04ebd..d4914710b 100644
--- a/backend.php
+++ b/backend.php
@@ -273,6 +273,7 @@
FROM ttrss_feeds LEFT JOIN ttrss_feed_categories
ON (ttrss_feed_categories.id = cat_id)
WHERE
+ ttrss_feeds.hidden = false AND
ttrss_feeds.owner_uid = '$owner_uid' AND parent_feed IS NULL
ORDER BY $order_by_qpart");
@@ -1364,7 +1365,18 @@
print "<br><input type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
$checked><label for=\"rtl_content\">Right-to-left content</label>";
-
+
+ $hidden = sql_bool_to_bool(db_fetch_result($result, 0, "hidden"));
+
+ if ($hidden) {
+ $checked = "checked";
+ } else {
+ $checked = "";
+ }
+
+ print "<br><input type=\"checkbox\" id=\"hidden\" name=\"hidden\"
+ $checked><label for=\"hidden\">Hide from feedlist</label>";
+
print "</td></tr>";
print "</table>";
@@ -1394,6 +1406,7 @@
$parent_feed = db_escape_string($_POST["parent_feed"]);
$private = checkbox_to_sql_bool(db_escape_string($_POST["private"]));
$rtl_content = checkbox_to_sql_bool(db_escape_string($_POST["rtl_content"]));
+ $hidden = checkbox_to_sql_bool(db_escape_string($_POST["hidden"]));
if (get_pref($link, 'ENABLE_FEED_CATS')) {
if ($cat_id && $cat_id != 0) {
@@ -1420,7 +1433,8 @@
auth_login = '$auth_login',
auth_pass = '$auth_pass',
private = $private,
- rtl_content = $rtl_content
+ rtl_content = $rtl_content,
+ hidden = $hidden
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
}
@@ -1568,7 +1582,7 @@
// print "<h3>Edit Feeds</h3>";
- $result = db_query($link, "SELECT id,title,feed_url,last_error
+ $result = db_query($link, "SELECT id,title,feed_url,last_error
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
if (db_num_rows($result) > 0) {
@@ -1656,7 +1670,8 @@
F1.purge_interval,
F1.cat_id,
F2.title AS parent_title,
- C1.title AS category
+ C1.title AS category,
+ F1.hidden
FROM
ttrss_feeds AS F1
LEFT JOIN ttrss_feeds AS F2
@@ -1706,6 +1721,8 @@
$edit_link = htmlspecialchars(db_unescape_string($line["feed_url"]));
$edit_cat = htmlspecialchars(db_unescape_string($line["category"]));
+ $hidden = sql_bool_to_bool($line["hidden"]);
+
if (!$edit_cat) $edit_cat = "Uncategorized";
$last_updated = $line["last_updated"];
@@ -1759,6 +1776,12 @@
$edit_title = truncate_string($edit_title, 40);
$edit_link = truncate_string($edit_link, 60);
+ if ($hidden) {
+ $edit_title = "<span class=\"insensitive\">$edit_title (Hidden)</span>";
+ $edit_link = "<span class=\"insensitive\">$edit_link</span>";
+ $last_updated = "<span class=\"insensitive\">$last_updated</span>";
+ }
+
$parent_title = $line["parent_title"];
if ($parent_title) {
$parent_title = "<span class='groupPrompt'>(linked to