use author attribute

This commit is contained in:
Andrew Dolgov 2006-02-26 08:09:48 +01:00
parent b6104dee39
commit a545b56442
2 changed files with 14 additions and 2 deletions

View File

@ -903,7 +903,8 @@
$result = db_query($link, "SELECT title,link,content,feed_id,comments,int_id,
SUBSTRING(updated,1,16) as updated,
(SELECT icon_url FROM ttrss_feeds WHERE id = feed_id) as icon_url,
num_comments
num_comments,
author
FROM ttrss_entries,ttrss_user_entries
WHERE id = '$id' AND ref_id = id");
@ -967,7 +968,14 @@
print "<div class=\"postHeader\"><table width=\"100%\">";
print "<tr><td><a href=\"" . $line["link"] . "\">" . $line["title"] . "</a></td>";
$entry_author = $line["author"];
if ($entry_author) {
$entry_author = " - by $entry_author";
}
print "<tr><td><a href=\"" . $line["link"] . "\">" . $line["title"] .
"</a>$entry_author</td>";
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
strtotime($line["updated"]));

View File

@ -49,6 +49,10 @@
}
while (true) {
print "Purging old posts...\n";
global_purge_old_posts($link, false);
// FIXME: get all scheduled updates w/forced refetch
// Stub, until I figure out if it is really needed.