wiki.techinc.nl/redirect.php
2004-05-07 13:43:10 +00:00

17 lines
322 B
PHP

<?php
unset( $DP );
unset( $IP );
$wgCommandLineMode = false;
require_once( "./LocalSettings.php" );
global $wgArticlePath;
require_once( "WebRequest.php" );
$wgRequest = new WebRequest();
$page = $wgRequest->getVal( "wpDropdown" );
$url = str_replace( "$1", $page, $wgArticlePath );
header( "Location: {$url}" );
?>