From bf41f9d1179a6140193b94370e7f4ee305781cb5 Mon Sep 17 00:00:00 2001 From: aude Date: Mon, 15 Oct 2012 19:08:58 +0000 Subject: [PATCH] fix bug 41043, return false on edit page form when section is invalid Change-Id: I62bc724ac33ed33368d5607bc96a6b57dc0d41cf --- includes/EditPage.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/EditPage.php b/includes/EditPage.php index cc41b02688..4a1e5170f5 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -776,6 +776,9 @@ class EditPage { $this->edittime = $this->mArticle->getTimestamp(); $content = $this->getContentObject( false ); #TODO: track content object?! + if ( $content === false ) { + return false; + } $this->textbox1 = $this->toEditText( $content ); // activate checkboxes if user wants them to be always active -- 2.20.1