summaryrefslogtreecommitdiff
path: root/includes/unicode.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/unicode.inc')
-rw-r--r--includes/unicode.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/unicode.inc b/includes/unicode.inc
index cb3b0a8fc..93a522d09 100644
--- a/includes/unicode.inc
+++ b/includes/unicode.inc
@@ -121,7 +121,7 @@ function unicode_requirements() {
* @param &$data
* The XML data which will be parsed later.
* @return
- * An XML parser object.
+ * An XML parser object or FALSE on error.
*/
function drupal_xml_parser_create(&$data) {
// Default XML encoding is UTF-8
@@ -149,7 +149,7 @@ function drupal_xml_parser_create(&$data) {
}
else {
watchdog('php', 'Could not convert XML encoding %s to UTF-8.', array('%s' => $encoding), WATCHDOG_WARNING);
- return 0;
+ return FALSE;
}
}