summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-04-09 11:55:11 +0200
committerAndrey Andreev <narf@bofh.bg>2012-04-09 11:55:11 +0200
commitc01d31685ad365c6bf3e833c03d7f8a3402c0ec7 (patch)
tree34370d88d4d29955d47599b1250f0d80b82800e4 /system/database/drivers/oci8
parent5c0e9fe409e9ca87cc9daf39ae9029c026ad01cc (diff)
Added a default _delete() method to CI_DB_active_record
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index a452d51ed..1b66178c6 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -644,7 +644,7 @@ class CI_DB_oci8_driver extends CI_DB {
empty($like) OR $conditions[] = implode(' ', $like);
empty($limit) OR $conditions[] = 'rownum <= '.$limit;
- return 'DELETE FROM '.$table.(empty($conditions) ? '' : ' WHERE '.implode(' AND ', $conditions));
+ return 'DELETE FROM '.$table.(count($conditions) > 0 ? ' WHERE '.implode(' AND ', $conditions) : '');
}
// --------------------------------------------------------------------