From 5f188ad2a823448a4edbba13fbaf48bd149bdf2e Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 7 Apr 2004 05:46:47 +0000 Subject: [PATCH] fixed accidental usage of wfFullUrl() --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index f7149e66b2..607c735650 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -446,7 +446,7 @@ htmlspecialchars( $wgLang->recodeForEdit( $this->textbox1 ) ) . if ( !$skip ) { $title = Title::makeTitle( NS_SPECIAL, "Blockme" ); $iphash = md5( $wgIP . $wgProxyKey ); - $url = wfFullUrl( $title->getPrefixedURL(), "ip=$iphash" ); + $url = $title->getFullURL( "ip=$iphash" ); foreach ( $wgProxyPorts as $port ) { $params = implode( " ", array( -- 2.20.1