summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-05-27 15:07:57 +0200
committerAndrey Andreev <narf@bofh.bg>2012-05-27 15:07:57 +0200
commit9b655400c9519407d1d33a75323b9f4fdac42766 (patch)
tree370095ee79acf84c18d10ca100bd59c3aca2f270 /system
parent0bf4e88d935e972fc432b8c3cdaeb5397749b580 (diff)
Fix an erroneus method name
Diffstat (limited to 'system')
-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 c25752824..858ec356d 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -1272,7 +1272,7 @@ class CI_DB_driver {
$item = $matches[1];
// Escape the alias
- $alias = ' '.$matches[2].$this->escape_identifiers($matches[3]);
+ $alias = ' '.$matches[2].$this->_escape_identifiers($matches[3]);
}
else
{