Issue #155 : correction bug prefix table SQL

Le préfixe freshrss_ était rentré en dur dans une des requêtes
This commit is contained in:
Marien Fressinaud
2013-09-15 11:29:31 +02:00
parent 6f8b260ebf
commit 35dcb5e39a

View File

@@ -399,7 +399,7 @@ class EntryDAO extends Model_pdo {
$where .= ' AND is_read = 1';
}
if (!empty($limitFromId)) { //TODO: Consider using LPAD(e.date, 11) //CONCAT is for cases when many entries have the same date
$where .= ' AND CONCAT(e.date, e.id) ' . ($order === 'low_to_high' ? '<=' : '>=') . ' (SELECT CONCAT(s.date, s.id) from freshrss_entry s WHERE s.id = "' . $limitFromId . '")';
$where .= ' AND CONCAT(e.date, e.id) ' . ($order === 'low_to_high' ? '<=' : '>=') . ' (SELECT CONCAT(s.date, s.id) FROM ' . $this->prefix . 'entry s WHERE s.id = "' . $limitFromId . '")';
}
if ($order == 'low_to_high') {