Ticket #33004: 33004_1.diff
File 33004_1.diff, 1.1 KB (added by , 9 years ago) |
---|
-
wp-includes/wp-diff.php
228 228 $line = apply_filters( 'process_text_diff_html', $processed_line, $line, 'unchanged' ); 229 229 } 230 230 if ( $this->_show_split_view ) { 231 $r .= '<tr>' . $this->contextLine( $line ) . $this-> emptyLine() . $this->contextLine( $line ) . "</tr>\n";231 $r .= '<tr>' . $this->contextLine( $line ) . $this->contextLine( $line ) . "</tr>\n"; 232 232 } else { 233 233 $r .= '<tr>' . $this->contextLine( $line ) . "</tr>\n"; 234 234 } … … 316 316 $r .= $this->_deleted( array($orig_line), false ); 317 317 } else { // A true changed row. 318 318 if ( $this->_show_split_view ) { 319 $r .= '<tr>' . $this->deletedLine( $orig_line ) . $this-> emptyLine() . $this->addedLine( $final_line ) . "</tr>\n";319 $r .= '<tr>' . $this->deletedLine( $orig_line ) . $this->addedLine( $final_line ) . "</tr>\n"; 320 320 } else { 321 321 $r .= '<tr>' . $this->deletedLine( $orig_line ) . "</tr><tr>" . $this->addedLine( $final_line ) . "</tr>\n"; 322 322 }