? 625196-44_avoid_array_merge_warning.patch
? 923318-1_avoid_fatal_error.patch
? 923318-2_avoid_fatal_error.patch
? libraries/simplepie.inc
Index: feeds.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feeds/feeds.module,v
retrieving revision 1.55.2.1
diff -u -p -r1.55.2.1 feeds.module
--- feeds.module	25 Sep 2010 16:07:50 -0000	1.55.2.1
+++ feeds.module	26 Sep 2010 17:15:15 -0000
@@ -66,6 +66,7 @@ function feeds_source_import($job) {
   try {
     $source->existing()->import();
   }
+  catch (FeedsNotExistingException $e) {}
   catch (Exception $e) {
     watchdog('feeds_source_import()', $e->getMessage(), array(), WATCHDOG_ERROR);
   }
@@ -80,6 +81,7 @@ function feeds_importer_expire($job) {
   try {
     $importer->existing()->expire();
   }
+  catch (FeedsNotExistingException $e) {}
   catch (Exception $e) {
     watchdog('feeds_importer_expire()', $e->getMessage(), array(), WATCHDOG_ERROR);
   }
Index: includes/FeedsSource.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feeds/includes/FeedsSource.inc,v
retrieving revision 1.21
diff -u -p -r1.21 FeedsSource.inc
--- includes/FeedsSource.inc	15 Sep 2010 20:06:20 -0000	1.21
+++ includes/FeedsSource.inc	26 Sep 2010 17:15:15 -0000
@@ -301,6 +301,7 @@ class FeedsSource extends FeedsConfigura
       $this->importer->existing();
       return parent::existing();
     }
+    throw new FeedsNotExistingException(t('Source configuration not valid.'));
   }
 
   /**
