Oops. Don't double-escape this.

This commit is contained in:
Arne Heizmann 2004-08-30 23:45:05 +00:00
parent e037d70026
commit b417a82c1a

View file

@ -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" );
}
}
}