Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feeds
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
feeds
Commits
9e902ed2
Commit
9e902ed2
authored
14 years ago
by
Alex Barth
Browse files
Options
Downloads
Patches
Plain Diff
Use drupal_render_children() to avert disaster.
parent
b9e88b56
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
feeds_ui/feeds_ui.admin.inc
+2
-2
2 additions, 2 deletions
feeds_ui/feeds_ui.admin.inc
with
2 additions
and
2 deletions
feeds_ui/feeds_ui.admin.inc
+
2
−
2
View file @
9e902ed2
...
...
@@ -471,7 +471,7 @@ function theme_feeds_ui_plugin_form($variables) {
$output
.
=
theme
(
'feeds_ui_container'
,
array
(
'container'
=>
$container
));
}
$output
.
=
drupal_render
(
$form
);
$output
.
=
drupal_render
_children
(
$form
);
return
$output
;
}
...
...
@@ -845,6 +845,6 @@ function theme_feeds_ui_mapping_form($variables) {
$output
.
=
drupal_render
(
$form
[
'legendset'
]);
$output
.
=
drupal_render
(
$form
);
$output
.
=
drupal_render
_children
(
$form
);
return
$output
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment