diff options
author | Dionysis Arvanitis <dionysis.arvanitis@gmail.com> | 2014-07-05 11:14:56 +0200 |
---|---|---|
committer | Dionysis Arvanitis <dionysis.arvanitis@gmail.com> | 2014-07-05 11:14:56 +0200 |
commit | 5df2f1b741cc03477c279ef01be6c564e6076c0e (patch) | |
tree | a6e5f66c98550abc33efcea3af5441521dd9a4a7 /system/database/drivers | |
parent | ab9971f112c1394db0d0fc963d860479d3ec408b (diff) |
Missing looping index added. Without index empty rows returned for csv column headers.
Diffstat (limited to 'system/database/drivers')
-rw-r--r-- | system/database/drivers/pdo/pdo_result.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/pdo_result.php b/system/database/drivers/pdo/pdo_result.php index 1b8fbc9d4..3f3af2e19 100644 --- a/system/database/drivers/pdo/pdo_result.php +++ b/system/database/drivers/pdo/pdo_result.php @@ -93,7 +93,7 @@ class CI_DB_pdo_result extends CI_DB_result { { // Might trigger an E_WARNING due to not all subdrivers // supporting getColumnMeta() - $field_names[$i] = @$this->result_id->getColumnMeta(); + $field_names[$i] = @$this->result_id->getColumnMeta($i); $field_names[$i] = $field_names[$i]['name']; } |