diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-05 12:43:25 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-05 12:43:25 +0100 |
commit | 193ec9693b642cf53a8ff7c2679f6a3c433abbb8 (patch) | |
tree | 6c9519bf9207dcbbd18e336a1a5dfb5252339220 /system/database/DB_driver.php | |
parent | 8741dda98f2cf4be982ce0cb4f6f798d2b53c0a9 (diff) | |
parent | 2baae203864cecd6f7c92b244c28dd18e0051d2c (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop-issue-499
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r-- | system/database/DB_driver.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 15195b20a..e403efb9f 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -293,6 +293,12 @@ class CI_DB_driver { $sql = preg_replace("/(\W)".$this->swap_pre."(\S+?)/", "\\1".$this->dbprefix."\\2", $sql); } + // Compile binds if needed + if ($binds !== FALSE) + { + $sql = $this->compile_binds($sql, $binds); + } + // Is query caching enabled? If the query is a "read type" // we will load the caching class and return the previously // cached query if it exists @@ -308,12 +314,6 @@ class CI_DB_driver { } } - // Compile binds if needed - if ($binds !== FALSE) - { - $sql = $this->compile_binds($sql, $binds); - } - // Save the query for debugging if ($this->save_queries == TRUE) { |