diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-06-15 00:37:18 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-06-15 00:37:18 +0200 |
commit | e389b0eb2f107ee16e5f6ca47833809dffdfc02f (patch) | |
tree | 48d3ca77c154710b36c98584201708df17119b92 /system | |
parent | f68db392ea3861de9d80c41e3cd5b857468c53f9 (diff) |
Fixed ANOTHER DB_Forge bug in the mysql driver.
I'm watching you @narfbg.
Diffstat (limited to 'system')
-rw-r--r-- | system/database/drivers/mysql/mysql_forge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysql/mysql_forge.php b/system/database/drivers/mysql/mysql_forge.php index d22454d84..2ac75bad2 100644 --- a/system/database/drivers/mysql/mysql_forge.php +++ b/system/database/drivers/mysql/mysql_forge.php @@ -62,7 +62,7 @@ class CI_DB_mysql_forge extends CI_DB_forge { $sql .= "\n\t".$this->db->escape_identifiers($field); - empty($attributes['NAME']) OR ' '.$this->db->escape_identifiers($attributes['NAME']).' '; + empty($attributes['NAME']) OR $sql .= ' '.$this->db->escape_identifiers($attributes['NAME']).' '; if ( ! empty($attributes['TYPE'])) { |