From 04b0872bc467384f87f57142002313bd50bd61ec Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 13 Jan 2010 14:35:41 +0000 Subject: [PATCH] - Patch #682530 by TUc: removed redundant variable_get() call. --- modules/aggregator/aggregator.module | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 3812ed3c9cf..2a9d3f2fc14 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -634,7 +634,6 @@ function aggregator_refresh($feed) { // If there are items on the feed, let all enabled processors do their work on it. if (@count($feed->items)) { - $processors = variable_get('aggregator_processors', array('aggregator')); foreach ($processors as $processor) { module_invoke($processor, 'aggregator_process', $feed); }