summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-09-17 21:17:55 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-09-17 21:17:55 +0200
commitfc86d14ade745ca65f8ec8e6eaa0fb4c817961a2 (patch)
treebdcb69fc0ca3a471afa4007648e7c7e3a2e74791 /app
parentfc7d2a0bf271e43a9e6001dccef61ec0762eb840 (diff)
Bug purge
https://github.com/marienfressinaud/FreshRSS/issues/493
Diffstat (limited to 'app')
-rw-r--r--app/Models/FeedDAO.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/FeedDAO.php b/app/Models/FeedDAO.php
index 756b1f008..b89ae2045 100644
--- a/app/Models/FeedDAO.php
+++ b/app/Models/FeedDAO.php
@@ -331,7 +331,7 @@ class FreshRSS_FeedDAO extends Minz_ModelPdo {
$id_max = intval($date_min) . '000000';
$stm->bindParam(':id_feed', $id, PDO::PARAM_INT);
- $stm->bindParam(':id_max', $id_max, PDO::PARAM_INT);
+ $stm->bindParam(':id_max', $id_max, PDO::PARAM_STR);
$stm->bindParam(':keep', $keep, PDO::PARAM_INT);
if ($stm && $stm->execute()) {