Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
446b2927
Commit
446b2927
authored
Jul 19, 2008
by
Dries
Browse files
- Patch
#263517
by mfb: fixed notice in RSS feeds.
parent
052ee721
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/common.inc
View file @
446b2927
...
...
@@ -970,7 +970,7 @@ function format_xml_elements($array) {
$output
.
=
drupal_attributes
(
$value
[
'attributes'
]);
}
if
(
$value
[
'value'
]
!=
''
)
{
if
(
isset
(
$value
[
'value'
])
&&
$value
[
'value'
]
!=
''
)
{
$output
.
=
'>'
.
(
is_array
(
$value
[
'value'
])
?
format_xml_elements
(
$value
[
'value'
])
:
check_plain
(
$value
[
'value'
]))
.
'</'
.
$value
[
'key'
]
.
">
\n
"
;
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment