diff options
author | admin <devnull@localhost> | 2006-09-20 23:13:26 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-20 23:13:26 +0200 |
commit | e348efb92de213fcfbc312993d8b21a30eb280c0 (patch) | |
tree | c9e8f65a883208448c01813eb300277f9773030c /system/drivers/DB_mysql.php | |
parent | 480da81d6111a5c1faf4433707ee8d3b3de8031e (diff) |
Diffstat (limited to 'system/drivers/DB_mysql.php')
-rw-r--r-- | system/drivers/DB_mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/drivers/DB_mysql.php b/system/drivers/DB_mysql.php index a90d84268..72790976e 100644 --- a/system/drivers/DB_mysql.php +++ b/system/drivers/DB_mysql.php @@ -443,7 +443,7 @@ class CI_DB_mysql_result extends CI_DB_result { $retval = array(); while ($field = mysql_fetch_field($this->result_id)) { - $F = new CI_DB_field(); + $F = new stdClass(); $F->name = $field->name; $F->type = $field->type; $F->default = $field->def; |