From eb57449a543f6dba6331a80ed53d6b91f19a1a0a Mon Sep 17 00:00:00 2001 From: daniel Date: Mon, 11 Jun 2012 17:41:34 +0200 Subject: [PATCH] fix logic error --- includes/ContentHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ContentHandler.php b/includes/ContentHandler.php index 59c3426a2c..035de9600c 100644 --- a/includes/ContentHandler.php +++ b/includes/ContentHandler.php @@ -1028,7 +1028,7 @@ class WikitextContentHandler extends TextContentHandler { * @return boolean whether sections are supported. */ public function supportsSections() { - return false; + return true; } } -- 2.20.1