From 189cc2f0f486ca3f3f0b791c48dedb18464a2511 Mon Sep 17 00:00:00 2001 From: daniel Date: Fri, 19 Oct 2012 12:24:49 +0200 Subject: [PATCH] (Bug 41178) Check whether content is null or false. This is a follow-up to I7d629753. Change-Id: Id9e307fcbab5d28fe4fc4ec21b5a4882cffc6841 --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 137a621dc2..17335e49bf 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -471,7 +471,7 @@ class EditPage { $content = $this->getContentObject(); # Use the normal message if there's nothing to display - if ( $this->firsttime && ( $content === false || $content->isEmpty() ) ) { + if ( $this->firsttime && ( !$content || $content->isEmpty() ) ) { $action = $this->mTitle->exists() ? 'edit' : ( $this->mTitle->isTalkPage() ? 'createtalk' : 'createpage' ); throw new PermissionsError( $action, $permErrors ); -- 2.20.1