From fab26647461535ae58f5282f37f9b45f5ce80241 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 27 Nov 2005 14:53:43 +0000 Subject: [PATCH] move parentheses out of link --- includes/SpecialContributions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 051f913824..b7833cf39d 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -355,7 +355,7 @@ function ucListEdit( $sk, $row ) { if( $row->rev_id == $row->page_latest ) { $topmarktext .= '' . $messages['uctop'] . ''; if( !$row->page_is_new ) { - $difftext .= $sk->makeKnownLinkObj( $page, '(' . $messages['diff'] . ')', 'diff=0' ); + $difftext .= '(' . $sk->makeKnownLinkObj( $page, $messages['diff'], 'diff=0' ) . ')'; } else { $difftext .= $messages['newarticle']; } @@ -373,7 +373,7 @@ function ucListEdit( $sk, $row ) { if( $row->rev_deleted && !$wgUser->isAllowed( 'undelete' ) ) { $difftext = '(' . $messages['diff'] . ')'; } else { - $difftext = $sk->makeKnownLinkObj( $page, '(' . $messages['diff'].')', 'diff=prev&oldid='.$row->rev_id ); + $difftext = '(' . $sk->makeKnownLinkObj( $page, $messages['diff'], 'diff=prev&oldid='.$row->rev_id ) . ')'; } $histlink='('.$sk->makeKnownLinkObj( $page, $messages['hist'], 'action=history' ) . ')'; -- 2.20.1