From: jeroendedauw Date: Fri, 25 Jan 2013 15:51:00 +0000 (+0100) Subject: use strict null check X-Git-Tag: 1.31.0-rc.0~20913 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=4caadaf6647b502d639ae5bcde4661cdcb6b6ded;p=lhc%2Fweb%2Fwiklou.git use strict null check Change-Id: I23d1b6b90ed46bf4b2b737539435c66b97a9a51d --- diff --git a/includes/content/AbstractContent.php b/includes/content/AbstractContent.php index 85cd79c978..926dea746d 100644 --- a/includes/content/AbstractContent.php +++ b/includes/content/AbstractContent.php @@ -236,7 +236,7 @@ abstract class AbstractContent implements Content { Content $old = null, $recursive = true, ParserOutput $parserOutput = null ) { - if ( !$parserOutput ) { + if ( $parserOutput === null ) { $parserOutput = $this->getParserOutput( $title, null, null, false ); }