diff options
Diffstat (limited to 'src/Bridge.php')
-rw-r--r-- | src/Bridge.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Bridge.php b/src/Bridge.php index b137b51..3b3ed51 100644 --- a/src/Bridge.php +++ b/src/Bridge.php @@ -65,7 +65,7 @@ class Bridge { public function getLists($forumId) { throw_if_null($forumId); - $sql = 'SELECT list_name FROM forums ' . + $sql = 'SELECT list_name FROM lists ' . 'WHERE forum_id = ' . $forumId; $result = $this->db->query($sql); @@ -133,6 +133,7 @@ class Bridge { $count = $this->db->exec($sql); +# FIXME: throwing an exception prevents us from deleting old posts if ($count < 1) { throw new Exception('Failed to delete post id: ' . $postId); } |