From: Andrew Dolgov Date: Sun, 20 Nov 2005 10:43:50 +0000 (+0100) Subject: remove seconds from feed details headlines X-Git-Tag: schema_feature_freeze_for_1.1~155 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=bffdddd0b0c9d45c6d7b4c03015db554a691ed2c;p=tt-rss.git remove seconds from feed details headlines --- diff --git a/backend.php b/backend.php index 22fc434b..1da33364 100644 --- a/backend.php +++ b/backend.php @@ -2221,7 +2221,8 @@ print ""; - $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");