diff options
-rw-r--r-- | system/database/DB_utility.php | 2 | ||||
-rw-r--r-- | user_guide/changelog.html | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php index 4ba69adbd..33c68faea 100644 --- a/system/database/DB_utility.php +++ b/system/database/DB_utility.php @@ -217,7 +217,7 @@ class CI_DB_utility extends CI_DB_forge { */ function xml_from_result($query, $params = array()) { - if ( ! is_object($query) OR ! method_exists($query, 'field_names')) + if ( ! is_object($query) OR ! method_exists($query, 'list_fields')) { show_error('You must submit a valid result object'); } diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 9044e3224..17cc003d9 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -110,6 +110,7 @@ SVN Revision: </p> <li>Fixed a bug in the Calendar library where the shortname was output for "May".</li> <li>Fixed a bug with ORIG_PATH_INFO that was allowing URIs of just a slash through.</li> <li>Fixed a fatal error in the Oracle and ODBC drivers (#6752)</li> + <li>Fixed a bug where xml_from_result() was checking for a nonexistent method.</li> <li>Fixed a bug where Database Forge's add_column and modify_column were not looping through when sent multiple fields.</li> <li>Fixed a bug where the File Helper was using '/' instead of the DIRECTORY_SEPARATOR constant.</li> <li>Fixed a bug to prevent PHP errors when attempting to use sendmail on servers that have manually disabled the PHP popen() function.</li> |