Index: privatemsg_filter.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/privatemsg/privatemsg_filter/privatemsg_filter.module,v retrieving revision 1.1.2.2 diff -u -r1.1.2.2 privatemsg_filter.module --- privatemsg_filter.module 23 Dec 2008 16:46:13 -0000 1.1.2.2 +++ privatemsg_filter.module 2 Feb 2009 02:54:48 -0000 @@ -382,7 +382,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)) && user_access('use privatemsg_filter')) { $content['tags']['content'] = drupal_get_form('privatemsg_filter_dropdown', $account); $content['tags']['#weight'] = -5; } @@ -486,4 +486,4 @@ } drupal_set_message(t('Tagging information has been saved.')); } -} +} \ No newline at end of file