diff options
author | Mancy <abdullah.mancy@gmail.com> | 2011-12-20 09:47:51 +0100 |
---|---|---|
committer | Mancy <abdullah.mancy@gmail.com> | 2011-12-20 09:47:51 +0100 |
commit | c4caf5a181344e48fc6740f1383dd302f5b604d2 (patch) | |
tree | 10f48ac5edef91f2b5284894c0ca2a3bfab72565 /system/database/DB_active_rec.php | |
parent | d054e137917ef1131195679aa8abeb4dbf69e4e4 (diff) |
taking care of LIKE when used in UPDATE statement #798
Diffstat (limited to 'system/database/DB_active_rec.php')
-rw-r--r-- | system/database/DB_active_rec.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index 43920772a..7a608c4f0 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -1424,7 +1424,7 @@ class CI_DB_active_record extends CI_DB_driver { $this->limit($limit); } - $sql = $this->_update($this->_protect_identifiers($this->ar_from[0], TRUE, NULL, FALSE), $this->ar_set, $this->ar_where, $this->ar_orderby, $this->ar_limit); + $sql = $this->_update($this->_protect_identifiers($this->ar_from[0], TRUE, NULL, FALSE), $this->ar_set, $this->ar_where, $this->ar_orderby, $this->ar_limit, , $this->ar_like); $this->_reset_write(); return $this->query($sql); |