Hi@all,

after enabling this module I got a JS-Error "Drupal.ModuleFilter.activeTab is undefined" on the modules page and nothing is displayed on the page. After a bit of investigation I found the reason:

I have a module named "Field Redirection" which defines a package named "Content" in its info file. For this package Drupal generates a tr-tag with the id="content". The problem is, that there is allready a div with the same id in the theme "Seven".

The JS-script module_filter_tab.js of this module removes all TRs by its IDs. So this script removes also the div with the id ="content" which contains all the other page content.

I suggest to change line 34 in module_filter_tab.js from var $row = $('#' + id); to var $row = $('#' + id, table);. This solves the issue for me.

Thanks,
dendie

CommentFileSizeAuthor
#2 module_filter_empty-1572320-2.patch473 byteszambrey

Comments

braindrift’s picture

can someone reproduce the issue?

zambrey’s picture

Status: Active » Needs review
StatusFileSize
new473 bytes

Yeah, enabled field_redirection module breaks module page.
Attaching patch with your suggestion. Thanks.

greenskin’s picture

Status: Needs review » Closed (duplicate)