diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php
index b398e5fe54..6a07dbca42 100644
|
a
|
b
|
if ( ! function_exists( 'wp_text_diff' ) ) : |
| 2690 | 2690 | * title. |
| 2691 | 2691 | * 'title_right' : Default is an empty string. Change the HTML to the right of |
| 2692 | 2692 | * the title. |
| | 2693 | * 'show_split_view' : Default is an empty string. Show the HTML in split view to the right of |
| | 2694 | * the title and Left of the title. |
| 2693 | 2695 | * |
| 2694 | 2696 | * @since 2.6.0 |
| 2695 | 2697 | * |
| … |
… |
if ( ! function_exists( 'wp_text_diff' ) ) : |
| 2699 | 2701 | * |
| 2700 | 2702 | * @param string $left_string "old" (left) version of string |
| 2701 | 2703 | * @param string $right_string "new" (right) version of string |
| 2702 | | * @param string|array $args Optional. Change 'title', 'title_left', and 'title_right' defaults. |
| | 2704 | * @param string|array $args Optional. Change 'title', 'title_left', title_right and 'show_split_view' defaults. |
| 2703 | 2705 | * @return string Empty string if strings are equivalent or HTML with differences. |
| 2704 | 2706 | */ |
| 2705 | 2707 | function wp_text_diff( $left_string, $right_string, $args = null ) { |
| … |
… |
if ( ! function_exists( 'wp_text_diff' ) ) : |
| 2707 | 2709 | 'title' => '', |
| 2708 | 2710 | 'title_left' => '', |
| 2709 | 2711 | 'title_right' => '', |
| | 2712 | 'show_split_view' => '', |
| 2710 | 2713 | ); |
| 2711 | 2714 | $args = wp_parse_args( $args, $defaults ); |
| 2712 | 2715 | |