summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-06-13 17:03:30 +0200
committerAndrey Andreev <narf@bofh.bg>2012-06-13 17:03:30 +0200
commitb55050962bb731d1a99430cd37953e55434236a9 (patch)
tree2edd50a25a04fe00eb4d067b8790e12ba819fb71 /system/database
parentd5e39ded4bbaaef528ebd0731c7c0a4968a8c438 (diff)
Revert from() alias escaping fix - it was breaking more stuff
Diffstat (limited to 'system/database')
-rw-r--r--system/database/DB_driver.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index 858ec356d..c71a6aa3a 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -1267,12 +1267,10 @@ class CI_DB_driver {
// If the item has an alias declaration we remove it and set it aside.
// Basically we remove everything to the right of the first space
- if (preg_match('/^([^\s]+) (AS )*(.+)$/i', $item, $matches))
+ if (strpos($item, ' ') !== FALSE)
{
- $item = $matches[1];
-
- // Escape the alias
- $alias = ' '.$matches[2].$this->_escape_identifiers($matches[3]);
+ $alias = strstr(' ', $item);
+ $item = substr($item, 0, - strlen($alias));
}
else
{