RELEASE-NOTES: Add note for StartProfiler deprecation
authorTimo Tijhof <krinklemail@gmail.com>
Tue, 17 Apr 2018 21:29:36 +0000 (22:29 +0100)
committerTimo Tijhof <krinklemail@gmail.com>
Tue, 17 Apr 2018 21:29:36 +0000 (22:29 +0100)
Follows-up 5209adff6c which just missed the 1.31 boat.

Change-Id: Ia7501e07ccd6498c24ff02f407be1c39414ab97e

RELEASE-NOTES-1.32
includes/Setup.php

index 5d426f1..941cf3f 100644 (file)
@@ -43,7 +43,8 @@ changes to languages because of Phabricator reports.
 * …
 
 === Deprecations in 1.32 ===
-* …
+* Use of a StartProfiler.php file is deprecated in favour of placing
+  configuration in LocalSettings.php.
 
 === Other changes in 1.32 ===
 * …
index ac47b6f..6513cdd 100644 (file)
@@ -80,7 +80,7 @@ MediaWiki\HeaderCallback::register();
  */
 
 if ( is_readable( "$IP/StartProfiler.php" ) ) {
-       // @deprecated since 1.31: Use LocalSettings.php instead.
+       // @deprecated since 1.32: Use LocalSettings.php instead.
        require "$IP/StartProfiler.php";
 }