1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 18:35:57 +00:00

mysql: use date_format() for yyiw part in queryFeedHeadlines()

This commit is contained in:
Andrew Dolgov
2018-12-09 20:38:02 +03:00
parent bea6e81d91
commit a5813bb766

View File

@@ -1701,7 +1701,7 @@ class Feeds extends Handler_Protected {
$yyiw_qpart = "to_char(date_entered, 'IYYY-IW') AS yyiw"; $yyiw_qpart = "to_char(date_entered, 'IYYY-IW') AS yyiw";
} else { } else {
$sanity_interval_qpart = "date_entered >= DATE_SUB(NOW(), INTERVAL 1 hour) AND"; $sanity_interval_qpart = "date_entered >= DATE_SUB(NOW(), INTERVAL 1 hour) AND";
$yyiw_qpart = "concat(year(date_entered),lpad(weekofyear(date_entered), 2, '0')) AS yyiw"; $yyiw_qpart = "date_format(date_entered, '%Y-%u') AS yyiw";
} }
if (!$search && !$skip_first_id_check) { if (!$search && !$skip_first_id_check) {