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

Fix notice.

parent a641fe2c
No related branches found
No related tags found
No related merge requests found
......@@ -461,7 +461,7 @@ function theme_feeds_ui_plugin_form($variables) {
// Assemble container, render form elements.
$container = array(
'title' => $form['plugin_key'][$key]['#title'],
'body' => $form['plugin_key'][$key]['#description'],
'body' => isset($form['plugin_key'][$key]['#description']) ? $form['plugin_key'][$key]['#description'] : '',
);
$form['plugin_key'][$key]['#title'] = t('Select');
$form['plugin_key'][$key]['#attributes']['class'] = array('feeds-ui-radio-link');
......
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