From 5162fc778acb1ecc8f879578e48bde9ce767775c Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Tue, 15 Apr 2008 20:05:37 +0000 Subject: Fixed an AR bug when joining with a table alias and table prefix (#4400). --- system/database/DB_active_rec.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/database') diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index d58580637..6f50c110d 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -1476,7 +1476,7 @@ class CI_DB_active_record extends CI_DB_driver { $sql = ( ! $this->ar_distinct) ? 'SELECT ' : 'SELECT DISTINCT '; - $sql .= (count($this->ar_select) == 0) ? '*' : implode(', ', $this->ar_select); + $sql .= (count($this->ar_select) == 0) ? '*' : implode(', ', $this->_filter_table_aliases($this->ar_select)); if ($select_override !== FALSE) { -- cgit v1.2.3-24-g4f1b