This is a great module. It needs more love. I tried out the dev snapshot and found that it has a small bug in its html, so that not only it's not modular but also its height is out of control. But the fix is easy.
1) Change the lines 237-238 in module_filter.module from this
$output .= '
'. drupal_render($form['module_filter']);
$output .= theme('table', $header, $rows, array('id' => 'projects')) .'
$output .= theme('table', $header, $rows, array('id' => 'projects')) .'
';
to this
$output .= '
';
$output .= theme('table', $header, $rows, array('id' => 'projects')) .'
$output .= theme('table', $header, $rows, array('id' => 'projects')) .'
';
Then add this into line 233
$output .= '
'. drupal_render($form['module_filter']) . '
';
I'd submit a patch but I don't know how to make those things. :-)
Comments
Comment #1
picardo commentedWhoops. It looks like removing the
Comment #2
greenskin commentedFixed with keeping the input where it was.