Oops. Don't double-escape this.
This commit is contained in:
parent
e037d70026
commit
b417a82c1a
1 changed files with 4 additions and 1 deletions
|
|
@ -1332,7 +1332,10 @@ class TableDiffFormatter extends DiffFormatter
|
|||
$wgOut->addHTML( '<tr>' . $this->deletedLine( $line ) .
|
||||
$this->addedLine( $aline ) . "</tr>\n" );
|
||||
}
|
||||
$this->_added( $add ); # If any leftovers
|
||||
foreach ($add as $line) { # If any leftovers
|
||||
$wgOut->addHTML( '<tr>' . $this->emptyLine() .
|
||||
$this->addedLine( $line ) . "</tr>\n" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue