diff --git a/Memberlist.template.php b/Memberlist.template.php index 881ef87..1f29740 100644 --- a/Memberlist.template.php +++ b/Memberlist.template.php @@ -43,6 +43,10 @@ function template_main() // Display each of the column headers of the table. foreach ($context['columns'] as $key => $column) { + // Do not display the messages count column + if ( $key == 'post_count' ) + continue; + // @TODO maybe find something nicer? if ($key == 'email_address' && !$context['can_send_email']) continue; @@ -92,22 +96,6 @@ function template_main()