From dbede6aad31752fdfe317f7eb66fb1c47c4ec5d4 Mon Sep 17 00:00:00 2001 From: Matthew Flaschen Date: Tue, 25 Mar 2014 23:15:59 -0400 Subject: [PATCH] Fix custom local MediaWiki:Helppage values Followup to 3a6ea89d4aa4a0fbc36a209fa13b1c6134110ca9 Change-Id: I7effec352d263f536d1d1763e9cd56d2f5154f13 --- includes/EditPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index d4b06fe35e..8f5b31e58c 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -2082,9 +2082,9 @@ class EditPage { } # Try to add a custom edit intro, or use the standard one if this is not possible. if ( !$this->showCustomIntro() && !$this->mTitle->exists() ) { - $helpLink = Skin::makeInternalOrExternalUrl( + $helpLink = wfExpandUrl( Skin::makeInternalOrExternalUrl( wfMessage( 'helppage' )->inContentLanguage()->text() - ); + ) ); if ( $wgUser->isLoggedIn() ) { $wgOut->wrapWikiMsg( // Suppress the external link icon, consider the help url an internal one -- 2.20.1