From 69cee071e2bac9c439c21e1fdf83a3a6cac2c04e Mon Sep 17 00:00:00 2001
From: Alex Barth <alex_b@53995.no-reply.drupal.org>
Date: Mon, 25 Jan 2010 15:18:28 +0000
Subject: [PATCH] Don't issue an error when Feeds plugin is missing, but a
 warning.

---
 feeds.module | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/feeds.module b/feeds.module
index 607a9fc2..75376be2 100644
--- a/feeds.module
+++ b/feeds.module
@@ -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);
 }
-- 
GitLab