X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=af830fde4284bd08109b6d471bde300529620bfd;hb=0c91901454502b3ae2b7228b398aacd34f1a3d12;hp=4547009b5c584acb67d9fa09c6f292d66fed65d4;hpb=3353ced6cd3148de1549568ee9633a913fd5faab;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 4547009b5c..af830fde42 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -3194,6 +3194,19 @@ $wgLocaltimezone = null; */ $wgLocalTZoffset = null; +/** + * List of Unicode characters for which capitalization is overridden in + * Language::ucfirst. The characters should be + * represented as char_to_convert => conversion_override. See T219279 for details + * on why this is useful during php version transitions. + * + * @warning: EXPERIMENTAL! + * + * @since 1.34 + * @var array + */ +$wgOverrideUcfirstCharacters = []; + /** @} */ # End of language/charset settings /*************************************************************************//** @@ -4111,7 +4124,7 @@ $wgInvalidRedirectTargets = [ 'Filepath', 'Mypage', 'Mytalk', 'Redirect' ]; * * The entire associative array will be passed through to the constructor as * the first parameter. Note that only Setup.php can use this variable -- - * the configuration will change at runtime via $wgParser member functions, so + * the configuration will change at runtime via Parser member functions, so * the contents of this variable will be out-of-date. The variable can only be * changed during LocalSettings.php, in particular, it can't be changed during * an extension setup function.