diff options
author | Filipp Lepalaan <filipp@mac.com> | 2010-07-09 09:24:49 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2010-07-09 09:24:49 +0300 |
commit | b4cd2ad59440171ea330ddaad28b4743d4936b51 (patch) | |
tree | 62d9d58ece9e1fb07356f4cf12119b7f5be1f88f /MainController.php | |
parent | 92733d581c1b810771606ffb18722c1b6294f040 (diff) | |
download | main-b4cd2ad59440171ea330ddaad28b4743d4936b51.tar.gz main-b4cd2ad59440171ea330ddaad28b4743d4936b51.tar.bz2 main-b4cd2ad59440171ea330ddaad28b4743d4936b51.zip |
better logging
Diffstat (limited to 'MainController.php')
-rw-r--r-- | MainController.php | 5 |
1 files changed, 3 insertions, 2 deletions
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'); |