From: Brion Vibber Date: Sat, 11 Dec 2004 01:41:52 +0000 (+0000) Subject: * Hide RC patrol markers when patrol is disabled or not allowed to patrol. X-Git-Tag: 1.5.0alpha1~1111 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=02621e520994401dfae39e37048545247de0866b;p=lhc%2Fweb%2Fwiklou.git * Hide RC patrol markers when patrol is disabled or not allowed to patrol. --- diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 7e9807b2b9..96575d730d 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -352,7 +352,7 @@ class ChangesList { # M, N and ! (minor, new and unpatrolled) if ( $rc_minor ) { $s .= ' '.$message["minoreditletter"].''; } if ( $rc_type == RC_NEW ) { $s .= ''.$message["newpageletter"].''; } - if ( !$rc_patrolled ) { $s .= ' !'; } + if ( $unpatrolled ) { $s .= ' !'; } # Article link # If it's a new article, there is no diff link, but if it hasn't been