diff options
author | alecpl <alec@alec.pl> | 2010-11-15 10:01:49 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-15 10:01:49 +0000 |
commit | 3e54812afa0db1eeb201c3faa53911f51d91d3e1 (patch) | |
tree | e2644e9b47d2df132797e150d03f129b876a0444 /program/lib/MDB2/Driver | |
parent | 2c200021fdf9b5d1c73e39e7c46e7db1e4152e91 (diff) |
- remove debug command (#1487053)
Diffstat (limited to 'program/lib/MDB2/Driver')
-rw-r--r-- | program/lib/MDB2/Driver/mysqli.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/program/lib/MDB2/Driver/mysqli.php b/program/lib/MDB2/Driver/mysqli.php index c74c4d2f7..34a27d2b0 100644 --- a/program/lib/MDB2/Driver/mysqli.php +++ b/program/lib/MDB2/Driver/mysqli.php @@ -1803,10 +1803,8 @@ class MDB2_Statement_mysqli extends MDB2_Statement_Common $result = $this->db->_wrapResult($result, $this->result_types, $result_class, $result_wrap_class, $this->limit, $this->offset); } else { -//echo '<pre>'; var_dump($this->statement, mysqli_stmt_error($this->statement));exit; if (!mysqli_stmt_execute($this->statement)) { -echo '<pre>'; var_dump($this->statement, mysqli_stmt_error($this->statement));exit; $err = $this->db->raiseError(null, null, null, 'Unable to execute statement', __FUNCTION__); return $err; |