From e725d564518f7e6dd22329bc2e70da5cc89ba1db Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 18 Nov 2011 07:10:03 +0000 Subject: [PATCH] Fix for r103502: make PoolWorkArticleView::doWork() return true when the parse is successful; also fixed getIsDirty() to return the member parameter and not try to execute a non-existing function --- includes/WikiPage.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/WikiPage.php b/includes/WikiPage.php index 1de6c1783a..fff85cec77 100644 --- a/includes/WikiPage.php +++ b/includes/WikiPage.php @@ -2792,7 +2792,7 @@ class PoolWorkArticleView extends PoolCounterWork { * @return bool */ public function getIsDirty() { - return $this->isDirty(); + return $this->isDirty; } /** @@ -2849,6 +2849,8 @@ class PoolWorkArticleView extends PoolCounterWork { if ( $isCurrent ) { $this->page->doCascadeProtectionUpdates( $this->parserOutput ); } + + return true; } /** -- 2.20.1