diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-02-16 10:41:32 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-02-16 10:41:32 +0100 |
commit | 20557d2aee5b9b445f0f581f8176456f325562b2 (patch) | |
tree | 0ac91fe19e3bf6fcf3d8c558d3fd5fde46bc27d2 /system/database/drivers/mysql/mysql_forge.php | |
parent | fb1116fcc53404f15387adffe7756d1965014b56 (diff) | |
parent | 827a92a6965612b185ae2e6766b6fb7740cd0cc2 (diff) |
Merge upstream branch
Diffstat (limited to 'system/database/drivers/mysql/mysql_forge.php')
-rw-r--r-- | system/database/drivers/mysql/mysql_forge.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/drivers/mysql/mysql_forge.php b/system/database/drivers/mysql/mysql_forge.php index d3107134e..0f251b086 100644 --- a/system/database/drivers/mysql/mysql_forge.php +++ b/system/database/drivers/mysql/mysql_forge.php @@ -147,7 +147,7 @@ class CI_DB_mysql_forge extends CI_DB_forge { $sql .= 'IF NOT EXISTS '; } - $sql .= $this->db->_escape_identifiers($table).' ('.$this->_process_fields($fields); + $sql .= $this->db->protect_identifiers($table).' ('.$this->_process_fields($fields); if (count($primary_keys) > 0) { @@ -187,7 +187,7 @@ class CI_DB_mysql_forge extends CI_DB_forge { */ public function _drop_table($table) { - return 'DROP TABLE IF EXISTS '.$this->db->_escape_identifiers($table); + return 'DROP TABLE IF EXISTS '.$this->db->protect_identifiers($table); } // -------------------------------------------------------------------- |