Skip to content
Snippets Groups Projects
Commit 9e902ed2 authored by Alex Barth's avatar Alex Barth
Browse files

Use drupal_render_children() to avert disaster.

parent b9e88b56
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment