X-Git-Url: http://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FDefines.php;h=9c76fec6b00bf600c2ea460569803b9b446d443d;hp=8ac84e5ab5343ca5dc4937fdce833a8cc8e47efe;hb=c759d64146ad3d48c316b0052b7e240def4634da;hpb=fb44a171b20b1ca832b93c8d788070fc6b13d932 diff --git a/includes/Defines.php b/includes/Defines.php index 8ac84e5ab5..9c76fec6b0 100644 --- a/includes/Defines.php +++ b/includes/Defines.php @@ -30,7 +30,19 @@ use Wikimedia\Rdbms\IDatabase; * @defgroup Constants MediaWiki constants */ +/** + * The running version of MediaWiki. + * + * This replaces the the $wgVersion global found in earlier versions. + * + * @since 1.31.7 + */ +define( 'MW_VERSION', '1.31.8' ); + # Obsolete aliases +/** + * @deprecated since 1.28 + */ define( 'DB_SLAVE', -1 ); /**@{ @@ -100,7 +112,7 @@ define( 'CACHE_ANYTHING', -1 ); // Use anything, as long as it works define( 'CACHE_NONE', 0 ); // Do not cache define( 'CACHE_DB', 1 ); // Store cache objects in the DB define( 'CACHE_MEMCACHED', 2 ); // MemCached, must specify servers in $wgMemCacheServers -define( 'CACHE_ACCEL', 3 ); // APC, XCache or WinCache +define( 'CACHE_ACCEL', 3 ); // APC or WinCache /**@}*/ /**@{