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

Fix uninitialized variable.

parent a2f13e9a
No related branches found
No related tags found
No related merge requests found
...@@ -173,6 +173,7 @@ abstract class FeedsConfigurable { ...@@ -173,6 +173,7 @@ abstract class FeedsConfigurable {
* Rendered config form, if available. Empty string otherwise. * Rendered config form, if available. Empty string otherwise.
*/ */
function feeds_get_config_form($configurable) { function feeds_get_config_form($configurable) {
$form_state = array();
if ($configurable->configForm($form_state)) { if ($configurable->configForm($form_state)) {
return drupal_get_form(get_class($configurable) .'_feeds_config_form', $configurable); return drupal_get_form(get_class($configurable) .'_feeds_config_form', $configurable);
} }
......
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