diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2007-01-24 09:26:41 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2007-01-24 09:26:41 +0000 |
commit | b6c19d49965caece085e7ee0da9c619b14f19655 (patch) | |
tree | 60c57c2a5035d5078fcc417e969f05cc8589f8ab /includes/Wiki.php | |
parent | 3cbab0f9c75400197f64677945b7d8c45de85d06 (diff) |
Aktualisierung auf MediaWiki 1.9.1
Diffstat (limited to 'includes/Wiki.php')
-rw-r--r-- | includes/Wiki.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/includes/Wiki.php b/includes/Wiki.php index 4fa421a6..06ae8cfe 100644 --- a/includes/Wiki.php +++ b/includes/Wiki.php @@ -118,7 +118,7 @@ class MediaWiki { * Initialize the object to be known as $wgArticle for special cases */ function initializeSpecialCases ( &$title, &$output, $request ) { - + global $wgRequest; wfProfileIn( 'MediaWiki::initializeSpecialCases' ); $search = $this->getVal('Search'); @@ -151,8 +151,7 @@ class MediaWiki { $targetUrl = $title->getFullURL(); // Redirect to canonical url, make it a 301 to allow caching global $wgServer, $wgUsePathInfo; - if( isset( $_SERVER['REQUEST_URI'] ) && - $targetUrl == $wgServer . $_SERVER['REQUEST_URI'] ) { + if( $targetUrl == $wgRequest->getFullRequestURL() ) { $message = "Redirect loop detected!\n\n" . "This means the wiki got confused about what page was " . "requested; this sometimes happens when moving a wiki " . |