show latest headlines in feed details
This commit is contained in:
parent
fdbcd71a7e
commit
bca02305ba
20
backend.php
20
backend.php
|
@ -2221,12 +2221,30 @@
|
||||||
|
|
||||||
print "</table>";
|
print "</table>";
|
||||||
|
|
||||||
|
$result = db_query($link, "SELECT title,updated
|
||||||
|
FROM ttrss_entries,ttrss_user_entries
|
||||||
|
WHERE ref_id = id AND feed_id = '$feed_id'
|
||||||
|
ORDER BY date_entered LIMIT 5");
|
||||||
|
|
||||||
|
if (db_num_rows($result) > 0) {
|
||||||
|
|
||||||
|
print "<h1>Latest headlines</h1>";
|
||||||
|
|
||||||
|
print "<ul class=\"nomarks\">";
|
||||||
|
|
||||||
|
while ($line = db_fetch_assoc($result)) {
|
||||||
|
print "<li>" . $line["title"].
|
||||||
|
" <span class=\"insensitive\">(" .$line["updated"].")</span></li>";
|
||||||
|
}
|
||||||
|
|
||||||
|
print "</ul>";
|
||||||
|
|
||||||
print "</div>";
|
print "</div>";
|
||||||
|
|
||||||
print "<div align='center'>
|
print "<div align='center'>
|
||||||
<input type='submit' class='button'
|
<input type='submit' class='button'
|
||||||
onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
|
onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
db_close($link);
|
db_close($link);
|
||||||
|
|
|
@ -613,3 +613,7 @@ table.innerLoginForm td {
|
||||||
div.small, p.small {
|
div.small, p.small {
|
||||||
font-size : x-small;
|
font-size : x-small;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.insensitive {
|
||||||
|
color : gray;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue