Fix an issue with the header of CologneBlue. Introduced in r97657
[lhc/web/wiklou.git] / redirect.php
index 8c370a3..eb15c6b 100644 (file)
@@ -1,13 +1,21 @@
 <?php
-require_once( './includes/WebStart.php' );
-global $wgArticlePath;
 
-require_once( 'includes/WebRequest.php' );
-$wgRequest = new WebRequest();
+/**
+ * Script that redirects to the article passed in the "wpDropdown" parameter.
+ * This is used by the nostalgia skin for the special pages drop-down
+ *
+ * @file
+ */
+if ( isset( $_SERVER['MW_COMPILED'] ) ) {
+       require ( 'phase3/includes/WebStart.php' );
+} else {
+       require ( dirname( __FILE__ ) . '/includes/WebStart.php' );
+}
+
+global $wgArticlePath;
 
 $page = $wgRequest->getVal( 'wpDropdown' );
 
 $url = str_replace( "$1", urlencode( $page ), $wgArticlePath );
 
-header( "Location: {$url}" );
-?>
+header( "Location: {$url}", true, 301 );