summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-06-14 20:47:30 +0400
committerAndrew Dolgov <[email protected]>2012-06-14 20:47:30 +0400
commitf0755b7c7e5268edcb5924ed12589a4c52c0673b (patch)
treeb9ef706208f01654631b66b90629efa8309abbe7 /include
parent2fb947eb21cd14225034cc91e48a102d026bfcd2 (diff)
New class to differentiate post title & tags
Diffstat (limited to 'include')
-rw-r--r--include/functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions.php b/include/functions.php
index 3ad438d86..e914ac365 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -3367,14 +3367,14 @@
$rv['content'] .= "<div class=\"postDate$rtl_class\">$parsed_updated</div>";
if ($line["link"]) {
- $rv['content'] .= "<div clear='both'><a target='_blank'
+ $rv['content'] .= "<div class='postTitle' clear='both'><a target='_blank'
title=\"".htmlspecialchars($line['title'])."\"
href=\"" .
$line["link"] . "\">" .
truncate_string($line["title"], 100) .
"<span class='author'>$entry_author</span></a></div>";
} else {
- $rv['content'] .= "<div clear='both'>" . $line["title"] . "$entry_author</div>";
+ $rv['content'] .= "<div class='postTitle' clear='both'>" . $line["title"] . "$entry_author</div>";
}
$tag_cache = $line["tag_cache"];
@@ -3391,7 +3391,7 @@
if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
- $rv['content'] .= "<div style='float : right'>
+ $rv['content'] .= "<div class='postTags' style='float : right'>
<img src='".theme_image($link, 'images/tag.png')."'
class='tagsPic' alt='Tags' title='Tags'>&nbsp;";