diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-02-14 15:55:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-02-14 15:55:42 +0100 |
commit | c51816da79d4b7a1c517142d7380234a9d8bae77 (patch) | |
tree | d157235e15d0721aa0f59e2fa2f22cdfac9602c2 /system/database/drivers | |
parent | 93cac5cc7bd1537788506d577c69852b4895a932 (diff) |
Fix another issue
Diffstat (limited to 'system/database/drivers')
-rw-r--r-- | system/database/drivers/mysql/mysql_utility.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysql/mysql_utility.php b/system/database/drivers/mysql/mysql_utility.php index 538aaa0f7..9d7cb679c 100644 --- a/system/database/drivers/mysql/mysql_utility.php +++ b/system/database/drivers/mysql/mysql_utility.php @@ -195,7 +195,7 @@ class CI_DB_mysql_utility extends CI_DB_utility { $output .= 'INSERT INTO '.$this->db->protect_identifiers($table).' ('.$field_str.') VALUES ('.$val_str.');'.$newline; } - return $output.$newline.$newline; + $output .= $newline.$newline; } return $output; |