summaryrefslogtreecommitdiffstats
path: root/system/database/DB_driver.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-11-20 18:24:10 +0100
committerAndrey Andreev <narf@bofh.bg>2012-11-20 18:24:10 +0100
commitd337a2621d36aebd0747b4e10a61b98bb13a2793 (patch)
treed93f8490c0e270b2a740cc5f741f89af86287d3c /system/database/DB_driver.php
parent87c7813015483820eb2884d9e3695f2773c1b2b2 (diff)
Fix an E_NOTICE
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r--system/database/DB_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index 1193b42f6..65ff792dc 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -1348,7 +1348,7 @@ abstract class CI_DB_driver {
$fields[$this->protect_identifiers($key)] = $this->escape($val);
}
- return $this->_update($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields, $dest);
+ return $this->_update($this->protect_identifiers($table, TRUE, NULL, FALSE), $fields);
}
// --------------------------------------------------------------------