summaryrefslogtreecommitdiff
path: root/modules/aggregator/aggregator.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-13 14:35:41 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-13 14:35:41 +0000
commit04b0872bc467384f87f57142002313bd50bd61ec (patch)
treed8d130e6f832c70447240c29b5fa803d2dbff09e /modules/aggregator/aggregator.module
parent1e05ca59fa6644d874c76111d27c1d72b86c4112 (diff)
downloadbrdo-04b0872bc467384f87f57142002313bd50bd61ec.tar.gz
brdo-04b0872bc467384f87f57142002313bd50bd61ec.tar.bz2
- Patch #682530 by TUc: removed redundant variable_get() call.
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r--modules/aggregator/aggregator.module1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index 3812ed3c9..2a9d3f2fc 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);
}