summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-12-01 07:42:08 +0100
committerAndrew Dolgov <[email protected]>2006-12-01 07:42:08 +0100
commitd4b4b9dece1ce4bb7d1bc56004c0dde318b8008f (patch)
tree5fedcf08c75f0a2ce7e92ab2391dd8f5c4d821ec /backend.php
parenta3656a415f2e557014eef45a395ad19e10771ff5 (diff)
show entry author in CDM header, tweak actions a little bit
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 65d1187a7..0cee573e6 100644
--- a/backend.php
+++ b/backend.php
@@ -469,6 +469,12 @@
100);
}
+ $entry_author = $line["author"];
+
+ if ($entry_author) {
+ $entry_author = " - by $entry_author";
+ }
+
if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
print "<tr class='$class' id='RROW-$id'>";
@@ -481,7 +487,7 @@
</td>";
print "<td class='hlMarkedPic'>$marked_pic</td>";
-
+
if ($line["feed_title"]) {
print "<td class='hlContent'>$content_link</td>";
print "<td class='hlFeed'>
@@ -528,6 +534,8 @@
onclick=\"javascript:toggleUnread($id, 0)\"
target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
+ print $entry_author;
+
if ($line["feed_title"]) {
print "&nbsp;(<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
}