diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php
index 1cd43ab17f..92adc5c865 100644
|
a
|
b
|
function esc_url( $url, $protocols = null, $_context = 'display' ) { |
| 4406 | 4406 | * @param string $url The URL to be cleaned. |
| 4407 | 4407 | * @param string[] $protocols Optional. An array of acceptable protocols. |
| 4408 | 4408 | * Defaults to return value of wp_allowed_protocols(). |
| 4409 | | * @return string The cleaned URL. |
| | 4409 | * @return string The URL after 'clean_url' filter is applied. An empty string is returned if $url specifies a protocol other than those in $protocols, or if $url contains an empty string. |
| 4410 | 4410 | */ |
| 4411 | 4411 | function esc_url_raw( $url, $protocols = null ) { |
| 4412 | 4412 | return esc_url( $url, $protocols, 'db' ); |