diff --git a/templates/rss-query-hpr.tpl.xml b/templates/rss-query-hpr.tpl.xml index 53e32c2..85443c8 100644 --- a/templates/rss-query-hpr.tpl.xml +++ b/templates/rss-query-hpr.tpl.xml @@ -3,7 +3,7 @@ SELECT eps.id, eps.explicit, - strftime(\'%H:%M:%S %d:%m:%Y\', date(eps.date)) AS date, + DATE_FORMAT(eps.date, \'%H:%i:%S %d:%m:%Y\') AS \'date\', eps.license, eps.duration, eps.title, eps.summary, eps.tags, eps.notes, @@ -14,7 +14,7 @@ FROM eps INNER JOIN hosts ON eps.hostid = hosts.hostid INNER JOIN miniseries ON eps.series = miniseries.id - WHERE eps.date < date(\'now\', \'+1 days\') + WHERE eps.date < DATE_ADD(NOW(), INTERVAL 1 DAY) ORDER BY eps.date DESC LIMIT 10 ')