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

Don't issue an error when Feeds plugin is missing, but a warning.

parent 1023bdb7
No related branches found
No related tags found
No related merge requests found
......@@ -605,7 +605,7 @@ function feeds_plugin_instance($plugin, $id) {
// Return FeedsMissingPlugin if no plugin was found.
// @todo Better error handling.
drupal_set_message(t('Missing Feeds plugin. Check whether all required libraries and modules are installed properly.'), 'error');
drupal_set_message(t('Missing Feeds plugin. Check whether all required libraries and modules are installed properly.'), 'warning');
$class = ctools_plugin_load_class('feeds', 'plugins', 'FeedsMissingPlugin', 'handler');
return FeedsConfigurable::instance($class, $id);
}
......
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