diff options
author | Kunal Mehta <legoktm@member.fsf.org> | 2018-06-04 13:35:06 -0700 |
---|---|---|
committer | Kunal Mehta <legoktm@member.fsf.org> | 2018-06-04 13:35:06 -0700 |
commit | 7271d50bab79231efcedeabf5fbe4db0aa13fa4d (patch) | |
tree | 962cf0cc2f4db852209eb278ef474727192a8b9f | |
parent | 2831e08363758a87aa02b5fc6546e3461552607a (diff) | |
download | mediawikicore-7271d50bab79231efcedeabf5fbe4db0aa13fa4d.tar.gz mediawikicore-7271d50bab79231efcedeabf5fbe4db0aa13fa4d.zip |
Deprecate $wgDBmysql5
Bug: T196185
Change-Id: Iea74b5dd1fc49c911dcc0070604f05100e56ce0d
-rw-r--r-- | RELEASE-NOTES-1.31 | 2 | ||||
-rw-r--r-- | includes/DefaultSettings.php | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index bf038a7ee037..fbe69eb6fa1f 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -43,6 +43,8 @@ production. framework that it enables. Some extensions mistakenly used this to check whether any AJAX functionality at all should be enabled, further making this problematic to retain. +* $wgDBmysql5 is now deprecated, and will be removed in a future version. It + has been marked as experimental ever since it was introduced. === New features in 1.31 === * (T76554) User sub-pages named ….json are now protected in the same way that diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index fa53703ba86e..949e50aa6027 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2059,6 +2059,8 @@ $wgDBerrorLogTZ = false; * Even correct usage may cause failures with Unicode supplementary * characters (those not in the Basic Multilingual Plane) unless MySQL * has enhanced their Unicode support. + * + * @deprecated since 1.31 */ $wgDBmysql5 = false; |