Index: abuse.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/abuse/abuse.module,v retrieving revision 1.34.2.1.2.3 diff -u -p -r1.34.2.1.2.3 abuse.module --- abuse.module 23 Oct 2009 17:07:30 -0000 1.34.2.1.2.3 +++ abuse.module 19 May 2010 18:36:21 -0000 @@ -818,7 +818,7 @@ function abuse_warn_form_submit($form_id function abuse_ban($uid) { global $user; - if ($user->uid == 1 || $user->uid == $uid) { + if ($uid == 1 || $user->uid == $uid) { drupal_set_message(t('You cannot ban '. ($user->uid == 1 ? 'the administrator' : 'yourself') .'!')); drupal_goto('admin/content/abuse'); }