diff --git a/feeds.pages.inc b/feeds.pages.inc index c1116001ab33661712b0e54416c8312168c96d62..1879ca7580adc0f964f6e6690d42dbfdab3b4a4b 100644 --- a/feeds.pages.inc +++ b/feeds.pages.inc @@ -15,6 +15,9 @@ function feeds_page() { $rows = array(); if ($importers = feeds_importer_load_all()) { foreach ($importers as $importer) { + if ($importer->disabled) { + continue; + } if (empty($importer->config['content_type'])) { $link = 'import/'. $importer->id; $title = $importer->config['name'];