(Bug 41178) Check whether content is null or false.
authordaniel <daniel.kinzler@wikimedia.de>
Fri, 19 Oct 2012 10:24:49 +0000 (12:24 +0200)
committerdaniel <daniel.kinzler@wikimedia.de>
Fri, 19 Oct 2012 10:24:49 +0000 (12:24 +0200)
This is a follow-up to I7d629753.

Change-Id: Id9e307fcbab5d28fe4fc4ec21b5a4882cffc6841

includes/EditPage.php

index 137a621..17335e4 100644 (file)
@@ -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 );