diff options
Diffstat (limited to 'redirect.php')
-rw-r--r-- | redirect.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/redirect.php b/redirect.php index 699926ec..c0a16021 100644 --- a/redirect.php +++ b/redirect.php @@ -6,8 +6,12 @@ * * @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' ); |