summaryrefslogtreecommitdiff
path: root/redirect.php
blob: 4718600d6ca9aa944f302ea2e6fdd18088ea66ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
define( 'MW_NO_SETUP', 1 );
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}" );
?>