mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-31 03:11:28 +00:00
title display fix for NULL category
This commit is contained in:
14
backend.php
14
backend.php
@@ -1384,15 +1384,17 @@
|
||||
$feed_title = "Global search results ($search)";
|
||||
} else if ($search && sprintf("%d", $feed) == 0) {
|
||||
$feed_title = "Feed search results ($search, $feed)";
|
||||
} else if ($feed > 0) {
|
||||
} else if ($feed >= 0) {
|
||||
|
||||
if ($cat_view) {
|
||||
|
||||
$result = db_query($link, "SELECT title FROM ttrss_feed_categories
|
||||
WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
|
||||
|
||||
$feed_title = db_fetch_result($result, 0, "title");
|
||||
|
||||
if ($feed != 0) {
|
||||
$result = db_query($link, "SELECT title FROM ttrss_feed_categories
|
||||
WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
|
||||
$feed_title = db_fetch_result($result, 0, "title");
|
||||
} else {
|
||||
$feed_title = "Uncategorized";
|
||||
}
|
||||
} else {
|
||||
|
||||
$result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds
|
||||
|
||||
Reference in New Issue
Block a user