Two new cache vars in User
[lhc/web/wiklou.git] / redirect.php
index 8c370a3..626c30d 100644 (file)
@@ -2,12 +2,8 @@
 require_once( './includes/WebStart.php' );
 global $wgArticlePath;
 
-require_once( 'includes/WebRequest.php' );
-$wgRequest = new WebRequest();
-
 $page = $wgRequest->getVal( 'wpDropdown' );
 
 $url = str_replace( "$1", urlencode( $page ), $wgArticlePath );
 
 header( "Location: {$url}" );
-?>