From 281a7661339d5f11eddde9a44892f8d56af83823 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Wed, 14 May 2008 06:43:16 +0000 Subject: [PATCH] * I totally blame SVN for this, it didn't show this change! --- includes/SpecialNewpages.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialNewpages.php b/includes/SpecialNewpages.php index d3956c4dee..c0e1f2b486 100644 --- a/includes/SpecialNewpages.php +++ b/includes/SpecialNewpages.php @@ -244,9 +244,9 @@ class NewPagesForm { $ulink = $this->skin->userLink( $result->rc_user, $result->rc_user_text ) . ' ' . $this->skin->userToolLinks( $result->rc_user, $result->rc_user_text ); $comment = $this->skin->commentBlock( $result->rc_comment ); - $css = $this->patrollable( $result ) ? 'not-patrolled' : ''; + $css = $this->patrollable( $result ) ? " class='not-patrolled'" : ''; - return "
  • {$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment}
  • \n"; + return "{$time} {$dm}{$plink} ({$hist}) {$dm}[{$length}] {$dm}{$ulink} {$comment}\n"; } /** -- 2.20.1