From 62a6958e33b36deeddfaf85a3d0a6d185b12c573 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Thu, 4 Feb 2010 19:01:34 +0000 Subject: [PATCH] Disable RDFa/microdata by default It's not clear we want these as an input format, per wikitech-l discussion. We don't want to allow them if we're not sure, because once we allow them we can't disable them without breaking things. --- includes/DefaultSettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index aa4acb7226..3b419c00bf 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -951,12 +951,12 @@ $wgHtml5Version = null; * Enabled RDFa attributes for use in wikitext. * NOTE: Interaction with HTML5 is somewhat underspecified. */ -$wgAllowRdfaAttributes = true; +$wgAllowRdfaAttributes = false; /** * Enabled HTML5 microdata attributes for use in wikitext, if $wgHtml5 is also true. */ -$wgAllowMicrodataAttributes = true; +$wgAllowMicrodataAttributes = false; /** * Should we try to make our HTML output well-formed XML? If set to false, -- 2.20.1