follow-up r59544. more comments added.
authorPhilip Tzou <philip@users.mediawiki.org>
Sun, 29 Nov 2009 18:38:57 +0000 (18:38 +0000)
committerPhilip Tzou <philip@users.mediawiki.org>
Sun, 29 Nov 2009 18:38:57 +0000 (18:38 +0000)
includes/Wiki.php

index c2dfb5f..e3924a1 100644 (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' ) ) ) )