diff options
| author | 2014-07-23 23:56:16 +0200 | |
|---|---|---|
| committer | 2014-07-23 23:56:16 +0200 | |
| commit | d5d3f6dcfa21e7defb26f3d470289e957bdb3dde (patch) | |
| tree | 599e3b02b3981dd78687b11c95c5dad7dd47f0d3 /app/Models/EntryDAO.php | |
| parent | e507256d0bdebd02cf1fcd6fe1477cbac0b6934e (diff) | |
Fix bugs in import/export
- EntryDAO.php: add a missing "FreshRSS_EntryDAO::"
- Fix htmlspecialchars in opml export
Diffstat (limited to 'app/Models/EntryDAO.php')
| -rw-r--r-- | app/Models/EntryDAO.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php index 8c001e73b..74b5306e9 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -17,7 +17,9 @@ class FreshRSS_EntryDAO extends Minz_ModelPdo { } public function addEntry($valuesTmp, $preparedStatement = null) { - $stm = $preparedStatement === null ? addEntryPrepare() : $preparedStatement; + $stm = $preparedStatement === null ? + FreshRSS_EntryDAO::addEntryPrepare() : + $preparedStatement; $values = array( $valuesTmp['id'], |
