mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 01:25:55 +00:00
show entry author in CDM header, tweak actions a little bit
This commit is contained in:
10
backend.php
10
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 " (<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user