From f5e214541300d60789b3aacb2d6f154572fad784 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 17 Oct 2012 17:00:45 -0400 Subject: [PATCH] Set $wgContentHandlerUseDB to false by default for now We'll eventually want to set this to true by default, but right now the content handler stuff is still semi-experimental stuff that isn't widely used yet. Before we turn this back on, let's make sure to give some notice since it's a pretty major schema change they'll have to make. Change-Id: If501a065a410a31a4232cd8386b498d7d18a73a4 --- includes/DefaultSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 9f07bdbf15..563bfb494a 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -6315,7 +6315,7 @@ $wgContentHandlerTextFallback = 'ignore'; * * @since 1.21 */ -$wgContentHandlerUseDB = true; +$wgContentHandlerUseDB = false; /** * Whether the user must enter their password to change their e-mail address -- 2.20.1