summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-07-31 01:22:13 +0400
committerAndrew Dolgov <[email protected]>2013-07-31 01:22:13 +0400
commitf035e6dc822e3b8766d55689abff26a6bf52d404 (patch)
treedd0aa0f0b9c65c389593d79975ee7bccb78906fc /include/functions.php
parent491ef970727e335c3f398612480bb482e0a1a42b (diff)
tweak the zoomed article a little bit
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index ccf530d17..cef0ea9eb 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -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"]);