From 3f4443ebf24b868ff81e13b3725991427ed342b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sun, 9 Jan 2011 12:23:41 +0000 Subject: [PATCH] Fix syntax terror from r79884 --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 7b72c51a35..bf5c2bff36 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1280,7 +1280,7 @@ HTML // TODO: can the checkLabel be moved outside of the div so that wrapWikiMsg could be used? $wgOut->addHTML( '
' . - wfMsgExt( 'confirmrecreate', 'parseinline', $username, "$comment" ) ) . + wfMsgExt( 'confirmrecreate', 'parseinline', $username, "$comment" ) . Xml::checkLabel( wfMsg( 'recreate' ), 'wpRecreate', 'wpRecreate', false, array( 'title' => $sk->titleAttrib( 'recreate' ), 'tabindex' => 1, 'id' => 'wpRecreate' ) ) . -- 2.20.1