mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-12 00:38:23 +00:00
Fix Call to undefined method TableDiffFormatterFullContext::_start_diff()
Bug: 57268 Change-Id: I3bf5f6690530a89f25b1716406a92524d07c4c2b
This commit is contained in:
parent
e0c0f65f42
commit
6204b76512
|
@ -27,9 +27,9 @@ class TableDiffFormatterFullContext extends TableDiffFormatter {
|
|||
}
|
||||
|
||||
// Just render the diff with no preprocessing
|
||||
$this->_start_diff();
|
||||
$this->_block( 1, $xlen, 1, $ylen, $diff->edits );
|
||||
$end = $this->_end_diff();
|
||||
$this->startDiff();
|
||||
$this->block( 1, $xlen, 1, $ylen, $diff->edits );
|
||||
$end = $this->endDiff();
|
||||
|
||||
return $end;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue