diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-01-29 14:05:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-01-29 14:05:42 +0100 |
commit | 37d113bc1e9194f49340d834ca5e55aa87a23992 (patch) | |
tree | daf730ad2e128c118c4d4c70b6e4e201765a1f58 /system/database/drivers/mysqli/mysqli_result.php | |
parent | 0687911229be13e100724dbf8b15b95146b591a9 (diff) | |
parent | 3b9319bcb11d4a17d9b19a62aef718891f4722ff (diff) |
Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop
Diffstat (limited to 'system/database/drivers/mysqli/mysqli_result.php')
-rw-r--r-- | system/database/drivers/mysqli/mysqli_result.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/database/drivers/mysqli/mysqli_result.php b/system/database/drivers/mysqli/mysqli_result.php index 4105f99f6..3fe05f9c5 100644 --- a/system/database/drivers/mysqli/mysqli_result.php +++ b/system/database/drivers/mysqli/mysqli_result.php @@ -74,6 +74,7 @@ class CI_DB_mysqli_result extends CI_DB_result { public function list_fields() { $field_names = array(); + $this->result_id->field_seek(0); while ($field = $this->result_id->fetch_field()) { $field_names[] = $field->name; |