summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-23 08:24:06 +0100
committerAndrew Dolgov <[email protected]>2006-03-23 08:24:06 +0100
commited51e128fc86d3d620bdd445271e3bb2b15bdb1d (patch)
treeb778d966cf109f0cae25fb5c3e601d6f061e53ce /backend.php
parent2ab29ac6015db16c82245091d5419ad2143742af (diff)
article display fixes for RTL (2)
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 7cc77c64f..fef7e9d61 100644
--- a/backend.php
+++ b/backend.php
@@ -946,8 +946,10 @@
if ($rtl_content) {
$rtl_tag = "dir=\"RTL\"";
+ $rtl_class = "RTL";
} else {
$rtl_tag = "";
+ $rtl_class = "";
}
$result = db_query($link, "UPDATE ttrss_user_entries
@@ -1032,7 +1034,7 @@
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
strtotime($line["updated"]));
- print "<td class=\"postDate\">$parsed_updated</td>";
+ print "<td class=\"postDate$rtl_class\">$parsed_updated</td>";
print "</tr>";