X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=index.php;h=5c2d290af8810144e351c04eda380db8fdadb79e;hb=ce81d0017408ea506d057eeb4289c3c793f0a12f;hp=24230923bcf45f8733cbf68e7fae9e18249a301b;hpb=9ab6887c8c93014a17afd6ab81f6bac3bf5effd6;p=lhc%2Fweb%2Fwiklou.git diff --git a/index.php b/index.php index 24230923bc..5c2d290af8 100644 --- a/index.php +++ b/index.php @@ -8,7 +8,7 @@ * See the README, INSTALL, and UPGRADE files for basic setup instructions * and pointers to the online documentation. * - * https://www.mediawiki.org/ + * https://www.mediawiki.org/wiki/Special:MyLanguage/MediaWiki * * ---------- * @@ -30,12 +30,13 @@ * @file */ +define( 'MW_ENTRY_POINT', 'index' ); + // Bail on old versions of PHP, or if composer has not been run yet to install // dependencies. Using dirname( __FILE__ ) here because __DIR__ is PHP5.3+. -// @codingStandardsIgnoreStart MediaWiki.Usage.DirUsage.FunctionFound +// phpcs:ignore MediaWiki.Usage.DirUsage.FunctionFound require_once dirname( __FILE__ ) . '/includes/PHPVersionCheck.php'; -// @codingStandardsIgnoreEnd -wfEntryPointCheck( 'index.php' ); +wfEntryPointCheck( 'html', dirname( $_SERVER['SCRIPT_NAME'] ) ); require __DIR__ . '/includes/WebStart.php';