Go back to plain text diffs between revisions instead of attempting partial rendering.
fixes #24254 git-svn-id: https://develop.svn.wordpress.org/trunk@24192 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b26b0cc0de
commit
3ddb5cb066
|
@ -2158,7 +2158,7 @@ function wp_ajax_revisions_data() {
|
|||
$left_content = apply_filters( "_wp_post_revision_field_$field", $left_revision->$field, $field, $left_revision, 'left' );
|
||||
$right_content = apply_filters( "_wp_post_revision_field_$field", $right_revision->$field, $field, $right_revision, 'right' );
|
||||
|
||||
add_filter( "_wp_post_revision_field_$field", 'wp_kses_post' );
|
||||
add_filter( "_wp_post_revision_field_$field", 'htmlspecialchars' );
|
||||
|
||||
$args = array();
|
||||
|
||||
|
|
|
@ -154,7 +154,7 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||
$r = '';
|
||||
foreach ($lines as $line) {
|
||||
if ( $encode )
|
||||
$line = wp_kses_post( $line );
|
||||
$line = htmlspecialchars( $line );
|
||||
if ( $this->_show_split_view ) {
|
||||
$r .= '<tr>' . $this->emptyLine() . $this->emptyLine() . $this->addedLine( $line ) . "</tr>\n";
|
||||
} else {
|
||||
|
@ -176,7 +176,7 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||
$r = '';
|
||||
foreach ($lines as $line) {
|
||||
if ( $encode )
|
||||
$line = wp_kses_post( $line );
|
||||
$line = htmlspecialchars( $line );
|
||||
if ( $this->_show_split_view ) {
|
||||
$r .= '<tr>' . $this->deletedLine( $line ) . $this->emptyLine() . $this->emptyLine() . "</tr>\n";
|
||||
} else {
|
||||
|
@ -199,7 +199,7 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
|
|||
$r = '';
|
||||
foreach ($lines as $line) {
|
||||
if ( $encode )
|
||||
$line = wp_kses_post( $line );
|
||||
$line = htmlspecialchars( $line );
|
||||
if ( $this->_show_split_view ) {
|
||||
$r .= '<tr>' . $this->contextLine( $line ) . $this->emptyLine() . $this->contextLine( $line ) . "</tr>\n";
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue