Use HTML5 for formatted API output
[mediawiki.git] / redirect.php
blob699926ec30c39d332d401d150b7a211f6ee44230
1 <?php
3 /**
4 * Script that redirects to the article passed in the "wpDropdown" parameter.
5 * This is used by the nostalgia skin for the special pages drop-down
7 * @file
8 */
10 require_once( './includes/WebStart.php' );
11 global $wgArticlePath;
13 $page = $wgRequest->getVal( 'wpDropdown' );
15 $url = str_replace( "$1", urlencode( $page ), $wgArticlePath );
17 header( "Location: {$url}" );