diff options
author | brian978 <dbrian89@yahoo.com> | 2012-12-09 10:20:01 +0100 |
---|---|---|
committer | brian978 <dbrian89@yahoo.com> | 2012-12-09 10:20:01 +0100 |
commit | 2c70fec8c697caaea0ee74392847a6a6204eea01 (patch) | |
tree | f7ecd946cdf2c4f66997d1f0677061a34afc6d0e /system/database/DB_result.php | |
parent | d56eb54f0f7a058d9e1b253f8fb900680d6813e0 (diff) | |
parent | 545a7c86701875e1412bcde316e9bcc76d9a23a0 (diff) |
Merge remote-tracking branch 'upstream/develop' into develop
Diffstat (limited to 'system/database/DB_result.php')
-rw-r--r-- | system/database/DB_result.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/database/DB_result.php b/system/database/DB_result.php index 9d19075ba..e1ef341a5 100644 --- a/system/database/DB_result.php +++ b/system/database/DB_result.php @@ -203,7 +203,7 @@ class CI_DB_result { return $this->custom_result_object[$class_name]; } - $this->_data_seek(0); + $this->data_seek(0); $this->custom_result_object[$class_name] = array(); while ($row = $this->_fetch_object($class_name)) @@ -246,7 +246,7 @@ class CI_DB_result { return $this->result_object; } - $this->_data_seek(0); + $this->data_seek(0); while ($row = $this->_fetch_object()) { $this->result_object[] = $row; @@ -287,7 +287,7 @@ class CI_DB_result { return $this->result_array; } - $this->_data_seek(0); + $this->data_seek(0); while ($row = $this->_fetch_assoc()) { $this->result_array[] = $row; @@ -617,7 +617,7 @@ class CI_DB_result { * @param int $n * @return bool */ - protected function _data_seek($n = 0) + public function data_seek($n = 0) { return FALSE; } |