diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-06-13 21:32:04 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-06-13 21:32:04 +0200 |
commit | 787914f40313e267205ea4a50ed63fc4ba74b8c8 (patch) | |
tree | e9f715d64edff98ab2c639dcaeec6795a22161bb /system/database/DB_driver.php | |
parent | 0c8c0e3c9cd9942bd0512a940fe7790a666d00b7 (diff) |
Revert "Fix an erroneus method name"
This reverts commit 9b655400c9519407d1d33a75323b9f4fdac42766.
Diffstat (limited to 'system/database/DB_driver.php')
-rwxr-xr-x | system/database/DB_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 858ec356d..c25752824 100755 --- 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 { |