summaryrefslogtreecommitdiffstats
path: root/system/database/DB_driver.php
diff options
context:
space:
mode:
authorJamie Rumbelow <jamie@jamierumbelow.net>2012-03-06 23:05:16 +0100
committerJamie Rumbelow <jamie@jamierumbelow.net>2012-03-06 23:05:16 +0100
commit0c09299363bb27d6a115ee1377167a6bc71e09a7 (patch)
tree66318ae291a892bef0f797a881e002cd47c36abe /system/database/DB_driver.php
parent17c1bedbab426ce383138f2bc720a1134afbe475 (diff)
accounting for the rename of protect_identifiers
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r--system/database/DB_driver.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index 6a20c001a..986916964 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -74,7 +74,7 @@ class CI_DB_driver {
public $cache_autodel = FALSE;
public $CACHE; // The cache class object
- protected $_protect_identifiers = TRUE;
+ protected $protect_identifiers = TRUE;
protected $_reserved_identifiers = array('*'); // Identifiers that should NOT be escaped
public function __construct($params)
@@ -1208,7 +1208,7 @@ class CI_DB_driver {
{
if ( ! is_bool($protect_identifiers))
{
- $protect_identifiers = $this->_protect_identifiers;
+ $protect_identifiers = $this->protect_identifiers;
}
if (is_array($item))