mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 22:11:28 +00:00
show entry author in CDM header, tweak actions a little bit
This commit is contained in:
@@ -469,6 +469,12 @@
|
|||||||
100);
|
100);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$entry_author = $line["author"];
|
||||||
|
|
||||||
|
if ($entry_author) {
|
||||||
|
$entry_author = " - by $entry_author";
|
||||||
|
}
|
||||||
|
|
||||||
if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
|
if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) {
|
||||||
|
|
||||||
print "<tr class='$class' id='RROW-$id'>";
|
print "<tr class='$class' id='RROW-$id'>";
|
||||||
@@ -528,6 +534,8 @@
|
|||||||
onclick=\"javascript:toggleUnread($id, 0)\"
|
onclick=\"javascript:toggleUnread($id, 0)\"
|
||||||
target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
|
target=\"new\" href=\"".$line["link"]."\">".$line["title"]."</a>";
|
||||||
|
|
||||||
|
print $entry_author;
|
||||||
|
|
||||||
if ($line["feed_title"]) {
|
if ($line["feed_title"]) {
|
||||||
print " (<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
|
print " (<a href='javascript:viewfeed($feed_id)'>".$line["feed_title"]."</a>)";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2317,7 +2317,8 @@
|
|||||||
SUBSTRING(last_read,1,19) as last_read_noms,
|
SUBSTRING(last_read,1,19) as last_read_noms,
|
||||||
$vfeed_query_part
|
$vfeed_query_part
|
||||||
$content_query_part
|
$content_query_part
|
||||||
SUBSTRING(updated,1,19) as updated_noms
|
SUBSTRING(updated,1,19) as updated_noms,
|
||||||
|
author
|
||||||
FROM
|
FROM
|
||||||
ttrss_entries,ttrss_user_entries,ttrss_feeds
|
ttrss_entries,ttrss_user_entries,ttrss_feeds
|
||||||
WHERE
|
WHERE
|
||||||
|
|||||||
@@ -129,8 +129,8 @@ window.onload = init;
|
|||||||
<div style="float : right">
|
<div style="float : right">
|
||||||
<select id="quickMenuChooser" onchange="quickMenuChange()">
|
<select id="quickMenuChooser" onchange="quickMenuChange()">
|
||||||
<option value="qmcDefault" selected>Actions...</option>
|
<option value="qmcDefault" selected>Actions...</option>
|
||||||
<option value="qmcPrefs">Preferences</option>
|
|
||||||
<option value="qmcSearch">Search</option>
|
<option value="qmcSearch">Search</option>
|
||||||
|
<option value="qmcPrefs">Preferences</option>
|
||||||
<option disabled>--------</option>
|
<option disabled>--------</option>
|
||||||
<option style="color : #5050aa" disabled>Feed actions:</option>
|
<option style="color : #5050aa" disabled>Feed actions:</option>
|
||||||
<option value="qmcAddFeed"> Subscribe to feed</option>
|
<option value="qmcAddFeed"> Subscribe to feed</option>
|
||||||
@@ -143,7 +143,7 @@ window.onload = init;
|
|||||||
<option value="qmcUpdateFeeds"> Update</option>
|
<option value="qmcUpdateFeeds"> Update</option>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<option value="qmcCatchupAll"> Mark as read</option>
|
<option value="qmcCatchupAll"> Mark as read</option>
|
||||||
<option value="qmcShowOnlyUnread"> Show only unread</option>
|
<option value="qmcShowOnlyUnread"> (Un)hide read feeds</option>
|
||||||
<option disabled>--------</option>
|
<option disabled>--------</option>
|
||||||
<option style="color : #5050aa" disabled>Other actions:</option>
|
<option style="color : #5050aa" disabled>Other actions:</option>
|
||||||
<option value="qmcAddFilter"> Create filter</option>
|
<option value="qmcAddFilter"> Create filter</option>
|
||||||
|
|||||||
Reference in New Issue
Block a user