Fixed typo in description in categorymembers module
[lhc/web/wiklou.git] / redirect.php
index 699926e..eb15c6b 100644 (file)
@@ -6,12 +6,16 @@
  *
  * @file
  */
+if ( isset( $_SERVER['MW_COMPILED'] ) ) {
+       require ( 'phase3/includes/WebStart.php' );
+} else {
+       require ( dirname( __FILE__ ) . '/includes/WebStart.php' );
+}
 
-require_once( './includes/WebStart.php' );
 global $wgArticlePath;
 
 $page = $wgRequest->getVal( 'wpDropdown' );
 
 $url = str_replace( "$1", urlencode( $page ), $wgArticlePath );
 
-header( "Location: {$url}" );
+header( "Location: {$url}", true, 301 );