aboutsummaryrefslogtreecommitdiff
path: root/app/Models
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models')
-rw-r--r--app/Models/CategoryDAO.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/Models/CategoryDAO.php b/app/Models/CategoryDAO.php
index e098c65e4..20a92d52a 100644
--- a/app/Models/CategoryDAO.php
+++ b/app/Models/CategoryDAO.php
@@ -228,16 +228,16 @@ SQL;
public function searchById($id) {
$sql = 'SELECT * FROM `_category` WHERE id=:id';
$stm = $this->pdo->prepare($sql);
- $stm->bindParam(':id', $id, PDO::PARAM_INT);
- $stm->execute();
- $res = $stm->fetchAll(PDO::FETCH_ASSOC);
- $cat = self::daoToCategory($res);
-
- if (isset($cat[0])) {
- return $cat[0];
- } else {
- return null;
+ if ($stm &&
+ $stm->bindParam(':id', $id, PDO::PARAM_INT) &&
+ $stm->execute()) {
+ $res = $stm->fetchAll(PDO::FETCH_ASSOC);
+ $cat = self::daoToCategory($res);
+ if (isset($cat[0])) {
+ return $cat[0];
+ }
}
+ return null;
}
/** @return FreshRSS_Category|null|false */