process_text_diff_html, $processed_line, $line, unchanged

process_text_diff_html, $processed_line, $line, unchanged

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('process_text_diff_html, $processed_line, $line, unchanged') is found 1 times:

  • /wp-includes/class-wp-text-diff-renderer-table.php line 264
    			if ( $encode ) {
    				$processed_line = htmlspecialchars( $line );
    
    				/** This filter is documented in wp-includes/class-wp-text-diff-renderer-table.php */
    				$line = apply_filters( 'process_text_diff_html', $processed_line, $line, 'unchanged' );
    			}
    			if ( $this->_show_split_view ) {
    				$r .= '<tr>' . $this->contextLine( $line ) . $this->contextLine( $line ) . "</tr>\n";
    			} else {
    				$r .= '<tr>' . $this->contextLine( $line ) . "</tr>\n";
    			}