Make WordPress Core

Ticket #33004: 33004_1.diff

File 33004_1.diff, 1.1 KB (added by dipesh.kakadiya, 9 years ago)

Need to change '_changed' & '_context' function

  • wp-includes/wp-diff.php

     
    228228                                $line = apply_filters( 'process_text_diff_html', $processed_line, $line, 'unchanged' );
    229229                        }
    230230                        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";
    232232                        } else {
    233233                                $r .= '<tr>' . $this->contextLine( $line ) . "</tr>\n";
    234234                        }
     
    316316                                $r .= $this->_deleted( array($orig_line), false );
    317317                        } else { // A true changed row.
    318318                                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";
    320320                                } else {
    321321                                        $r .= '<tr>' . $this->deletedLine( $orig_line ) . "</tr><tr>" . $this->addedLine( $final_line ) . "</tr>\n";
    322322                                }