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

Plugin instead of pluginS.

parent 18392cb3
No related branches found
No related tags found
No related merge requests found
...@@ -174,7 +174,7 @@ function feeds_ui_build_plugin_form(&$form_state, $feed) { ...@@ -174,7 +174,7 @@ function feeds_ui_build_plugin_form(&$form_state, $feed) {
'#type' => 'fieldset', '#type' => 'fieldset',
'#title' => t('Plugins'), '#title' => t('Plugins'),
); );
$form['plugins'] += $feed->pluginsForm($form_state); $form['plugins'] += $feed->pluginForm($form_state);
$form['submit'] = array( $form['submit'] = array(
'#type' => 'submit', '#type' => 'submit',
'#value' => t('Save'), '#value' => t('Save'),
......
...@@ -83,7 +83,7 @@ class Feed extends FeedsConfigurable { ...@@ -83,7 +83,7 @@ class Feed extends FeedsConfigurable {
/** /**
* Feed class specific plugin form. * Feed class specific plugin form.
*/ */
public function pluginsForm(&$form_state) { public function pluginForm(&$form_state) {
$form = array(); $form = array();
$plugins = feeds_get_plugins(); $plugins = feeds_get_plugins();
$form['fetcher'] = array( $form['fetcher'] = array(
......
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