X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FDefines.php;h=214eba5571b7e41bfd0dce4140f572f0d1da3c59;hb=0bea246d2cf628c69f971e5adfdecfdacc6368d7;hp=ca603e76845745d82290dd9975c491281026e6b7;hpb=7e105610397b55d67f42f31496e92496477500e3;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Defines.php b/includes/Defines.php index ca603e7684..214eba5571 100644 --- a/includes/Defines.php +++ b/includes/Defines.php @@ -30,6 +30,15 @@ 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.7' ); + # Obsolete aliases /** * @deprecated since 1.28 @@ -103,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 /**@}*/ /**@{