From 4caadaf6647b502d639ae5bcde4661cdcb6b6ded Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Fri, 25 Jan 2013 16:51:00 +0100 Subject: [PATCH] use strict null check Change-Id: I23d1b6b90ed46bf4b2b737539435c66b97a9a51d --- includes/content/AbstractContent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.20.1