X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=d173d355efde97b1c2fd9d74953b33d53f44cba2;hb=533e55e426a5254b743d850c253f7695731a9bd4;hp=68d784614aa3a8b225c487721a98ed8ffbbb1e6f;hpb=dc33b47bb4d1d8895f5a58335791bde4b0c35624;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 68d784614a..d173d355ef 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1935,7 +1935,8 @@ $wgSearchType = null; $wgSearchTypeAlternatives = null; /** - * Table name prefix; this should be alphanumeric and not contain spaces nor hyphens + * Table name prefix. + * This should be alphanumeric, contain neither spaces nor hyphens, and end in "_" */ $wgDBprefix = ''; @@ -2114,26 +2115,6 @@ $wgDBerrorLog = false; */ $wgDBerrorLogTZ = false; -/** - * Set to true to engage MySQL 4.1/5.0 charset-related features; - * for now will just cause sending of 'SET NAMES=utf8' on connect. - * - * @warning THIS IS EXPERIMENTAL! - * - * May break if you're not using the table defs from mysql5/tables.sql. - * May break if you're upgrading an existing wiki if set differently. - * Broken symptoms likely to include incorrect behavior with page titles, - * usernames, comments etc containing non-ASCII characters. - * Might also cause failures on the object cache and other things. - * - * 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; - /** * Set true to enable Oracle DCRP (supported from 11gR1 onward) * @@ -4877,6 +4858,7 @@ $wgDefaultUserOptions = [ 'rows' => 25, // @deprecated since 1.29 No longer used in core 'showhiddencats' => 0, 'shownumberswatching' => 1, + 'showrollbackconfirmation' => 0, 'skin' => false, 'stubthreshold' => 0, 'thumbsize' => 5, @@ -8976,6 +8958,12 @@ $wgInterwikiPrefixDisplayTypes = []; */ $wgMultiContentRevisionSchemaMigrationStage = SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_NEW; +/** + * The schema to use per default when generating XML dumps. This allows sites to control + * explicitly when to make breaking changes to their export and dump format. + */ +$wgXmlDumpSchemaVersion = XML_DUMP_SCHEMA_VERSION_10; + /** * Actor table schema migration stage. * @@ -9004,15 +8992,6 @@ $wgActorTableSchemaMigrationStage = SCHEMA_COMPAT_OLD; */ $wgEnablePartialBlocks = false; -/** - * Enable confirmation prompt for rollback actions to prevent accidental rollbacks. - * May be disabled to reduce number of clicks needed to perform rollbacks. - * - * @since 1.33 - * @var bool - */ -$wgEnableRollbackConfirmationPrompt = true; - /** * Enable stats monitoring when Block Notices are displayed in different places around core * and extensions. @@ -9041,6 +9020,26 @@ $wgOriginTrials = []; */ $wgPriorityHints = false; +/** + * Enable Element Timing. + * + * @warning EXPERIMENTAL! + * + * @since 1.34 + * @var bool + */ +$wgElementTiming = false; + +/** + * Temporary option to show rollback confirmation user settings + * without activating the feature itself + * @see T217039 + * @since 1.33 + * @deprecated 1.33 + * @var bool + */ +$wgDisableRollbackConfirmationFeature = false; + /** * For really cool vim folding this needs to be at the end: * vim: foldmarker=@{,@} foldmethod=marker