r105186 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r105185
|
r105186
|
r105187
>
Date:
16:15, 5 December 2011
Author:
hashar
Status:
ok
Tags:
Comment:
Fix PageHistoryBeforeList hook
Following
r100534
refactoring, it was using an incorrect variable.
Modified paths:
/trunk/phase3/includes/actions/HistoryAction.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/actions/HistoryAction.php
—
—
@@ -171,7 +171,7 @@
172
172
'</fieldset></form>'
173
173
);
174
174
175
- wfRunHooks( 'PageHistoryBeforeList', array( &$this->article ) );
175
+ wfRunHooks( 'PageHistoryBeforeList', array( &$this->page ) );
176
176
177
177
// Create and output the list.
178
178
$pager = new HistoryPager( $this, $year, $month, $tagFilter, $conds );
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r100534
* Changed action=history to use an Action subclass...
ialex
09:21, 23 October 2011
Status & tagging log
17:47, 5 December 2011
Aaron Schulz
(
talk
|
contribs
)
changed the
status
of r105186
[
removed:
new
added:
ok]