r103579 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r103578
|
r103579
|
r103580
>
Date:
07:10, 18 November 2011
Author:
ialex
Status:
ok
Tags:
Comment:
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
Modified paths:
/trunk/phase3/includes/WikiPage.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/WikiPage.php
—
—
@@ -2792,7 +2792,7 @@
2793
2793
* @return bool
2794
2794
*/
2795
2795
public function getIsDirty() {
2796
- return $this->isDirty();
2796
+ return $this->isDirty;
2797
2797
}
2798
2798
2799
2799
/**
—
—
@@ -2849,6 +2849,8 @@
2850
2850
if ( $isCurrent ) {
2851
2851
$this->page->doCascadeProtectionUpdates( $this->parserOutput );
2852
2852
}
2853
+
2854
+ return true;
2853
2855
}
2854
2856
2855
2857
/**
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r103502
* Added WikiPage::getParserOutput() and changed Article::getParserOutput() to...
ialex
20:21, 17 November 2011
Status & tagging log
22:27, 12 December 2011
😂
(
talk
|
contribs
)
changed the
status
of r103579
[
removed:
new
added:
ok]