Skip to content
Snippets Groups Projects
Commit 49d6dd84 authored by Alex Barth's avatar Alex Barth
Browse files

Only show enabled importers on import/ page.

parent 87c79ba1
No related branches found
No related tags found
No related merge requests found
......@@ -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'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment