diff options
author | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-17 06:07:40 +0200 |
---|---|---|
committer | Rick Ellis <rick.ellis@ellislab.com> | 2008-10-17 06:07:40 +0200 |
commit | 59523592c58abc303a6eae1904c80fa6a428c3d3 (patch) | |
tree | bb27e7ac32d6b79c1ae5d5ddf33c8bc84436a228 /system/database/DB_result.php | |
parent | e3945e9452fdaa155ad3a0ce51b591d3b12ccfe0 (diff) |
Fixed a number of bug reports related to table/db names not being escaped or prefixed correctly.
Diffstat (limited to 'system/database/DB_result.php')
-rw-r--r-- | system/database/DB_result.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/system/database/DB_result.php b/system/database/DB_result.php index 0ec59d568..8f55f6718 100644 --- a/system/database/DB_result.php +++ b/system/database/DB_result.php @@ -329,7 +329,6 @@ class CI_DB_result { function num_rows() { return $this->num_rows; }
function num_fields() { return 0; }
function list_fields() { return array(); }
- function field_names() { return array(); } // Deprecated
function field_data() { return array(); }
function free_result() { return TRUE; }
function _data_seek() { return TRUE; }
|