diff options
| author | 2016-10-01 14:50:17 +0200 | |
|---|---|---|
| committer | 2016-10-01 14:50:17 +0200 | |
| commit | 1d8c24c73fd76fa81a53808088f70cbb4fe063a6 (patch) | |
| tree | 5806d93a10a906287c5541407cdeeca05f3b3a24 /app/Models/EntryDAO.php | |
| parent | 548250620bbf16677f043e23c7134e991506ed76 (diff) | |
BindParam bug
Diffstat (limited to 'app/Models/EntryDAO.php')
| -rw-r--r-- | app/Models/EntryDAO.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php index 40f67061d..9874bce1c 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -197,7 +197,6 @@ class FreshRSS_EntryDAO extends Minz_ModelPdo implements FreshRSS_Searchable { if ($valuesTmp['is_read'] !== null) { $this->addEntryPrepared->bindParam(':is_read', $valuesTmp['is_read'] ? 1 : 0, PDO::PARAM_INT); } - $this->addEntryPrepared->bindParam(':is_read', $valuesTmp['is_read'], PDO::PARAM_INT); $this->addEntryPrepared->bindParam(':id_feed', $valuesTmp['id_feed'], PDO::PARAM_INT); $valuesTmp['tags'] = substr($valuesTmp['tags'], 0, 1023); $this->addEntryPrepared->bindParam(':tags', $valuesTmp['tags']); |
