1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 21:25:55 +00:00

tweak the zoomed article a little bit

This commit is contained in:
Andrew Dolgov
2013-07-31 01:22:13 +04:00
parent 491ef97072
commit f035e6dc82
2 changed files with 15 additions and 3 deletions

View File

@@ -3201,7 +3201,8 @@
$parsed_updated = make_local_datetime($line["updated"], true,
$owner_uid, true);
$rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
if (!$zoom_mode)
$rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
if ($line["link"]) {
$rv['content'] .= "<div class='postTitle'><a target='_blank'
@@ -3214,6 +3215,9 @@
$rv['content'] .= "<div class='postTitle'>" . $line["title"] . "$entry_author</div>";
}
if ($zoom_mode)
$rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
$tags_str = format_tags_string($line["tags"], $id);
$tags_str_full = join(", ", $line["tags"]);