From b4cd2ad59440171ea330ddaad28b4743d4936b51 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Fri, 9 Jul 2010 09:24:49 +0300 Subject: better logging --- MainController.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'MainController.php') diff --git a/MainController.php b/MainController.php index c4d937d..81c68bf 100644 --- a/MainController.php +++ b/MainController.php @@ -53,6 +53,7 @@ class MainController } $this->find($where); + if (!is_array($this->data)) { return false; // found nothing } @@ -256,14 +257,14 @@ class MainController $insert = rtrim($insert, ', '); $val = implode(', ', array_keys($values)); $sql = "INSERT INTO `{$this->table}` ({$insert}) VALUES ({$val})"; - + return MainDb::query($sql, $values); } //// // delete This Thing - protected function delete($where, $limit = '') + public function delete($where, $limit = '') { if (empty($where)) { return MainApp::error('Cannot delete without arguments'); -- cgit v1.2.3