commit | 8295c845a447b973ef27aec6ed41d4325af06a76 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Fri Jun 15 03:42:25 2012 +0300 |
committer | Andrey Andreev <narf@bofh.bg> | Fri Jun 15 03:42:25 2012 +0300 |
tree | fa66237539e129817497cb1856ae232a3d7c8d73 | |
parent | e389b0eb2f107ee16e5f6ca47833809dffdfc02f [diff] |
Fix issue #1482
diff --git a/system/database/DB_query_builder.php b/system/database/DB_query_builder.php index 488b294..f3e75cb 100644 --- a/system/database/DB_query_builder.php +++ b/system/database/DB_query_builder.php
@@ -381,7 +381,7 @@ } // Assemble the JOIN statement - $this->qb_join[] = $join = $type.'JOIN '.$this->protect_identifiers($table, TRUE, NULL, FALSE).' ON '.$cond; + $this->qb_join[] = $join = $type.'JOIN '.$table.' ON '.$cond; if ($this->qb_caching === TRUE) {