Index: trunk/phase3/includes/SpecialNewpages.php |
— | — | @@ -244,9 +244,9 @@ |
245 | 245 | $ulink = $this->skin->userLink( $result->rc_user, $result->rc_user_text ) . ' ' . |
246 | 246 | $this->skin->userToolLinks( $result->rc_user, $result->rc_user_text ); |
247 | 247 | $comment = $this->skin->commentBlock( $result->rc_comment ); |
248 | | - $css = $this->patrollable( $result ) ? 'not-patrolled' : ''; |
| 248 | + $css = $this->patrollable( $result ) ? " class='not-patrolled'" : ''; |
249 | 249 | |
250 | | - return "<li class='$css'>{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment}</li>\n"; |
| 250 | + return "<li{$css}>{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment}</li>\n"; |
251 | 251 | } |
252 | 252 | |
253 | 253 | /** |