X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=f473b3e7f7a29a27a88ad604a09b904595b4c4e9;hb=390f6411e09b404b910d7e6cf73ac621a26e0214;hp=33418d839c9de0e5398e94fecb9f62fdaaf37a18;hpb=05bdcdbbd9c52f14b6de3897187b90174f49130a;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 33418d839c..f473b3e7f7 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -3311,9 +3311,10 @@ $wgAllowUserJs = false; $wgAllowUserCss = false; /** - * Allow user-preferences implemented in CSS? - * This allows users to customise the site appearance to a greater - * degree; disabling it will improve page load times. + * Allow style-related user-preferences? + * + * This controls whether the `editfont` and `underline` preferences + * are availabe to users. */ $wgAllowUserCssPrefs = true; @@ -4438,7 +4439,6 @@ $wgEnableMagicLinks = [ * * This variable can have the following values: * - 'any': all pages as considered as valid articles - * - 'comma': the page must contain a comma to be considered valid * - 'link': the page must contain a [[wiki link]] to be considered valid * * See also See https://www.mediawiki.org/wiki/Manual:Article_count @@ -7335,7 +7335,7 @@ $wgAutoloadAttemptLowercase = true; * 'version' => '1.9.0', * 'url' => 'https://example.org/example-extension/', * 'descriptionmsg' => 'exampleextension-desc', - * 'license-name' => 'GPL-2.0+', + * 'license-name' => 'GPL-2.0-or-later', * ]; * @endcode * @@ -7369,7 +7369,7 @@ $wgAutoloadAttemptLowercase = true; * localizable message (omit in favour of 'descriptionmsg'). * * - license-name: Short name of the license (used as label for the link), such - * as "GPL-2.0+" or "MIT" (https://spdx.org/licenses/ for a list of identifiers). + * as "GPL-2.0-or-later" or "MIT" (https://spdx.org/licenses/ for a list of identifiers). */ $wgExtensionCredits = []; @@ -7454,8 +7454,9 @@ $wgJobClasses = [ 'categoryMembershipChange' => CategoryMembershipChangeJob::class, 'clearUserWatchlist' => ClearUserWatchlistJob::class, 'cdnPurge' => CdnPurgeJob::class, - 'enqueue' => EnqueueJob::class, // local queue for multi-DC setups 'userGroupExpiry' => UserGroupExpiryJob::class, + 'clearWatchlistNotifications' => ClearWatchlistNotificationsJob::class, + 'enqueue' => EnqueueJob::class, // local queue for multi-DC setups 'null' => NullJob::class, ];