diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-08 03:40:29 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-08 03:40:29 +0100 |
commit | 0f7decce7cb64566e63bd910557006f041514d89 (patch) | |
tree | faffe4f7e66d9dc67a40238ca7c63498cbbcfc22 /system/database | |
parent | 24276a3a204ddf5947c66bd74f183d8058c1171e (diff) |
Swap two vars for readability
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_active_rec.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index 30a17d11a..71762a4de 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -278,7 +278,7 @@ class CI_DB_active_record extends CI_DB_driver { { $v = trim($v); $this->_track_aliases($v); - $this->ar_from[] = $v = $this->_protect_identifiers($v, TRUE, NULL, FALSE); + $v = $this->ar_from[] = $this->_protect_identifiers($v, TRUE, NULL, FALSE); if ($this->ar_caching === TRUE) { |