diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-07-15 19:56:48 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-07-15 19:56:48 +0200 |
commit | 0875d69dc7b5138cc40ea2f248024b2a886a0d82 (patch) | |
tree | efb600554bc1e4270d7bc8ee922f6bd3c7f78509 /system/database/drivers/pdo/pdo_driver.php | |
parent | 4876b4837546c8c9f659bb74c68b16cdb326c844 (diff) |
Changed double quotes to single quotes to meet style guidelines
Diffstat (limited to 'system/database/drivers/pdo/pdo_driver.php')
-rw-r--r-- | system/database/drivers/pdo/pdo_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php index b36a3d927..705b16560 100644 --- a/system/database/drivers/pdo/pdo_driver.php +++ b/system/database/drivers/pdo/pdo_driver.php @@ -366,7 +366,7 @@ class CI_DB_pdo_driver extends CI_DB { protected function _update_batch($table, $values, $index, $where = NULL) { $ids = array(); - $where = ($where !== '' && count($where) >=1) ? implode(" ", $where).' AND ' : ''; + $where = ($where !== '' && count($where) >=1) ? implode(' ', $where).' AND ' : ''; foreach ($values as $key => $val) { |