From: daniel Date: Mon, 11 Jun 2012 15:41:34 +0000 (+0200) Subject: fix logic error X-Git-Tag: 1.31.0-rc.0~22097^2^2~113 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=commitdiff_plain;h=eb57449a543f6dba6331a80ed53d6b91f19a1a0a;p=lhc%2Fweb%2Fwiklou.git fix logic error --- 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; } }