Index: privatemsg_filter.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/privatemsg/privatemsg_filter/privatemsg_filter.module,v retrieving revision 1.1.2.7 diff -u -r1.1.2.7 privatemsg_filter.module --- privatemsg_filter.module 20 Feb 2009 21:38:29 -0000 1.1.2.7 +++ privatemsg_filter.module 20 Feb 2009 23:29:15 -0000 @@ -404,7 +404,7 @@ * Implementation of hook_privatemsg_list_messages_alter(). */ function privatemsg_filter_privatemsg_list_messages_alter(&$content, $account) { - if (!empty($content['list']['content']) || privatemsg_filter_get_filter($account)) { + if ((!empty($content['list']['content']) || privatemsg_filter_get_filter($account)) && privatemsg_user_access('use privatemsg_filter')) { $content['tags']['content'] = drupal_get_form('privatemsg_filter_dropdown', $account); $content['tags']['#weight'] = -5; } @@ -515,4 +515,4 @@ } drupal_set_message(t('Tagging information has been saved.')); } -} +} \ No newline at end of file