From: Gabriel Wicke Date: Wed, 5 May 2004 12:03:12 +0000 (+0000) Subject: open edit help in separate window to work around IE data loss bug X-Git-Tag: 1.3.0beta1~143 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=6b7f7a0d34ca36fa9045134214e2a20aabf55b28;p=lhc%2Fweb%2Fwiklou.git open edit help in separate window to work around IE data loss bug --- diff --git a/includes/EditPage.php b/includes/EditPage.php index de75631c01..34fccee1b7 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -280,8 +280,10 @@ class EditPage { $cancel = $sk->makeKnownLink( $this->mTitle->getPrefixedURL(), wfMsg( "cancel" ) ); - $edithelp = $sk->makeKnownLink( wfMsg( "edithelppage" ), - wfMsg( "edithelp" ) ); + $edithelpurl = $sk->makeUrl( wfMsg( "edithelppage" )); + $edithelp = ''. + wfMsg( "edithelp" ).''; $copywarn = wfMsg( "copyrightwarning", $sk->makeKnownLink( wfMsg( "copyrightpage" ) ) );