X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fdiff%2FWordAccumulator.php;h=ad802756efc7e12418ab45ffe29a53eebbfd0a7f;hb=a3a9b8d440c10e0f1937b20d36cd9e1004843197;hp=a26775ffa80c22d11e620f2c6fecbfb812460bf7;hpb=e968a1f431ad058dcb14adb2757bde5664b99a79;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/diff/WordAccumulator.php b/includes/diff/WordAccumulator.php index a26775ffa8..ad802756ef 100644 --- a/includes/diff/WordAccumulator.php +++ b/includes/diff/WordAccumulator.php @@ -46,11 +46,9 @@ class WordAccumulator { private function flushGroup( $new_tag ) { if ( $this->group !== '' ) { if ( $this->tag == 'ins' ) { - $this->line .= "insClass}>" . - htmlspecialchars( $this->group ) . ''; + $this->line .= "insClass}>" . htmlspecialchars( $this->group ) . ''; } elseif ( $this->tag == 'del' ) { - $this->line .= "delClass}>" . - htmlspecialchars( $this->group ) . ''; + $this->line .= "delClass}>" . htmlspecialchars( $this->group ) . ''; } else { $this->line .= htmlspecialchars( $this->group ); }