summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-03-03 20:08:02 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-03-03 20:08:02 +0000
commit36aaecd27e01169c12e4bd85fb63c951eb7c3fb0 (patch)
tree25dbbc5b96cac8ef1d9b9fb222be3b4325856aa3
parente68280064ea55528359d6738d9942062b3d7d554 (diff)
downloadbrdo-36aaecd27e01169c12e4bd85fb63c951eb7c3fb0.tar.gz
brdo-36aaecd27e01169c12e4bd85fb63c951eb7c3fb0.tar.bz2
- Moving comment
-rw-r--r--includes/common.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index ce95baa39..f9fec8daf 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1640,7 +1640,6 @@ function drupal_xml_parser_create(&$data) {
}
// Unsupported encodings are converted here into UTF-8.
- // Requires the iconv, GNU recode or mbstring PHP extension.
$php_supported = array('utf-8', 'iso-8859-1', 'us-ascii');
if (!in_array(strtolower($encoding), $php_supported)) {
$out = drupal_convert_to_utf8($data, $encoding);
@@ -1662,6 +1661,8 @@ function drupal_xml_parser_create(&$data) {
/**
* Convert data to UTF-8
*
+ * Requires the iconv, GNU recode or mbstring PHP extension.
+ *
* @param $data
* The data to be converted.
* @param $encoding