1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-07 18:21:33 +00:00

headlines: align feed title in vfeed-mode to the right

This commit is contained in:
Andrew Dolgov
2005-11-27 17:57:40 +01:00
parent 0f172fff41
commit bd34c52822
2 changed files with 17 additions and 6 deletions

View File

@@ -959,14 +959,20 @@
$feed_kind = "Labels";
}
if (!$vfeed_query_part) {
$content_query_part = "content as content_preview,";
} else {
$content_query_part = "";
}
$result = db_query($link, "SELECT
id,title,
SUBSTRING(updated,1,16) as updated,
unread,feed_id,marked,link,last_read,
SUBSTRING(last_read,1,19) as last_read_noms,
$vfeed_query_part
SUBSTRING(updated,1,19) as updated_noms,
content as content_preview
$content_query_part
SUBSTRING(updated,1,19) as updated_noms
FROM
ttrss_entries,ttrss_user_entries
WHERE
@@ -989,8 +995,8 @@
marked,link,last_read,
SUBSTRING(last_read,1,19) as last_read_noms,
$vfeed_query_part
SUBSTRING(updated,1,19) as updated_noms,
content
$content_query_part
SUBSTRING(updated,1,19) as updated_noms
FROM
ttrss_entries,ttrss_user_entries,ttrss_tags
WHERE