Index: trunk/extensions/WebStore/WebStoreStart.php |
— | — | @@ -1,25 +0,0 @@ |
2 | | -<?php |
3 | | - |
4 | | -/** |
5 | | - * WebStore startup file |
6 | | - */ |
7 | | - |
8 | | - |
9 | | -$IP = dirname( __FILE__ ) . '/../..'; |
10 | | -chdir( $IP ); |
11 | | -require( './includes/WebStart.php' ); |
12 | | - |
13 | | -if ( !defined( 'MW_WEBSTORE_ENABLED' ) ) { |
14 | | - echo <<<EOT |
15 | | -<html><body> |
16 | | -<p>The WebStore extension is disabled. Enable WebStore by putting:</p> |
17 | | - |
18 | | -<pre>require( "\$IP/extensions/WebStore.php" );</pre> |
19 | | - |
20 | | -<p>in your LocalSettings.php</p> |
21 | | -</body></html> |
22 | | -EOT; |
23 | | - exit( 1 ); |
24 | | -} |
25 | | - |
26 | | - |