diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-23 08:04:29 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-23 08:04:29 +0000 |
commit | 647d91aaef796c31b4e54154e8642bea95181a8e (patch) | |
tree | 4b6ad74314cfa56bf6bf82bc6db43f2b40365add /includes/common.inc | |
parent | 631ce5cfad90ea7c4b28443ee766fc179120d6c7 (diff) | |
download | brdo-647d91aaef796c31b4e54154e8642bea95181a8e.tar.gz brdo-647d91aaef796c31b4e54154e8642bea95181a8e.tar.bz2 |
#79733 by Darren Oh. Fix a call to an undefined function.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc index e2d51f23d..8fce947dd 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -810,7 +810,7 @@ function format_xml_elements($array) { } if ($value['value'] != '') { - $output .= '>'. (is_array($value['value']) ? format_xml_tags($value['value']) : check_plain($value['value'])) .'</'. $value['key'] .">\n"; + $output .= '>'. (is_array($value['value']) ? format_xml_elements($value['value']) : check_plain($value['value'])) .'</'. $value['key'] .">\n"; } else { $output .= " />\n"; @@ -818,7 +818,7 @@ function format_xml_elements($array) { } } else { - $output .= ' <'. $key .'>'. (is_array($value) ? format_xml_tags($value) : check_plain($value)) ."</$key>\n"; + $output .= ' <'. $key .'>'. (is_array($value) ? format_xml_elements($value) : check_plain($value)) ."</$key>\n"; } } return $output; |