summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-20 11:43:50 +0100
committerAndrew Dolgov <[email protected]>2005-11-20 11:43:50 +0100
commitbffdddd0b0c9d45c6d7b4c03015db554a691ed2c (patch)
treee26f9c5a81b315fff3164c6f4138f6127269f0c9
parentc565e1ef9ec14e2383db4acceb5e5ffcebae66de (diff)
remove seconds from feed details headlines
-rw-r--r--backend.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 22fc434bb..1da333648 100644
--- a/backend.php
+++ b/backend.php
@@ -2221,7 +2221,8 @@
print "</table>";
- $result = db_query($link, "SELECT title,updated,unread
+ $result = db_query($link, "SELECT title,
+ SUBSTRING(updated,1,16) AS updated,unread
FROM ttrss_entries,ttrss_user_entries
WHERE ref_id = id AND feed_id = '$feed_id'
ORDER BY date_entered DESC LIMIT 5");