summaryrefslogtreecommitdiffstats
path: root/system/database/DB_forge.php
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2008-10-07 02:19:34 +0200
committerRick Ellis <rick.ellis@ellislab.com>2008-10-07 02:19:34 +0200
commit2cad6e9da8b94833503d0d2f545bcaa29d50bd5d (patch)
tree27710681a466aaa5ca9da885939c54275a521925 /system/database/DB_forge.php
parentb4a6cf35fe8c637cec5be811f109f6f841456283 (diff)
There was a call to $this->input->_remove_invisible_characters($str); It should have been: $this->input->CI->_remove_invisible_characters($str);
Diffstat (limited to 'system/database/DB_forge.php')
-rw-r--r--system/database/DB_forge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php
index d48165e2b..64f95d635 100644
--- a/system/database/DB_forge.php
+++ b/system/database/DB_forge.php
@@ -191,7 +191,7 @@ class CI_DB_forge {
}
$sql = $this->_create_table($this->db->dbprefix.$table, $this->fields, $this->primary_keys, $this->keys, $if_not_exists);
-
+
$this->_reset();
return $this->db->query($sql);
}