follow-up r59544. more comments added.

This commit is contained in:
Philip Tzou 2009-11-29 18:38:57 +00:00
parent f9098ff1b6
commit 080f144fc4

View file

@ -225,6 +225,8 @@ class MediaWiki {
// Redirect loops, no title in URL, $wgUsePathInfo URLs
} else if( $action == 'view' && !$request->wasPosted() &&
( ( !isset($this->GET['title']) || $title->getPrefixedDBKey() != $this->GET['title'] ) ||
// No valid variant in URL (if the main-language has multi-variants), to ensure
// the Accept-Language would only be added to XVO when a 301 redirection happened
( !isset($this->GET['variant']) && $perferred != $wgContLang->getCode() &&
$wgContLang->hasVariants() && !$wgUser->isLoggedIn() ) ) &&
!count( array_diff( array_keys( $this->GET ), array( 'action', 'title' ) ) ) )