diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php
index 3b977f4f4e..3d4a825d0d 100644
a
|
b
|
function _deep_replace( $search, $subject ) { |
4335 | 4335 | * @global wpdb $wpdb WordPress database abstraction object. |
4336 | 4336 | * |
4337 | 4337 | * @param string|array $data Unescaped data |
4338 | | * @return string|array Escaped data |
| 4338 | * @return string|array Escaped data, in the same type as supplied |
4339 | 4339 | */ |
4340 | 4340 | function esc_sql( $data ) { |
4341 | 4341 | global $wpdb; |
… |
… |
function sanitize_trackback_urls( $to_ping ) { |
5606 | 5606 | * @since 5.5.0 Non-string values are left untouched. |
5607 | 5607 | * |
5608 | 5608 | * @param string|array $value String or array of data to slash. |
5609 | | * @return string|array Slashed `$value`. |
| 5609 | * @return string|array Slashed `$value`, in the same type as supplied. |
5610 | 5610 | */ |
5611 | 5611 | function wp_slash( $value ) { |
5612 | 5612 | if ( is_array( $value ) ) { |
… |
… |
function wp_slash( $value ) { |
5629 | 5629 | * @since 3.6.0 |
5630 | 5630 | * |
5631 | 5631 | * @param string|array $value String or array of data to unslash. |
5632 | | * @return string|array Unslashed `$value`. |
| 5632 | * @return string|array Unslashed `$value`, in the same type as supplied. |
5633 | 5633 | */ |
5634 | 5634 | function wp_unslash( $value ) { |
5635 | 5635 | return stripslashes_deep( $value ); |