diff options
author | Andrey Andreev <narf@devilix.net> | 2013-11-12 15:07:08 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-11-12 15:07:08 +0100 |
commit | 35e3b0bc4f723b938160da87aeb5ad9e054507c4 (patch) | |
tree | 33fab00e09a089b6573c39c8a27e3911b3ce814e /system | |
parent | 81b21ed46b8cc5cdbe8431a7e30161b2cf80be7c (diff) |
[ci skip] Remove some whitespace chars
Diffstat (limited to 'system')
-rw-r--r-- | system/database/DB_query_builder.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/system/database/DB_query_builder.php b/system/database/DB_query_builder.php index fb8514f5c..f0fe96c35 100644 --- a/system/database/DB_query_builder.php +++ b/system/database/DB_query_builder.php @@ -2561,14 +2561,13 @@ abstract class CI_DB_query_builder extends CI_DB_driver { { $qb_variable = 'qb_'.$val; $qb_cache_var = 'qb_cache_'.$val; - - $qb_new = $this->$qb_cache_var; + $qb_new = $this->$qb_cache_var; foreach ($this->$qb_variable as &$qb_var) { in_array($qb_var, $qb_new, TRUE) OR $qb_new[] = $qb_var; } - + $this->$qb_variable = $qb_new; } |