From b718cc0252826cd43a95b625d9ef2b9e974b6d52 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 22 Nov 2019 18:26:41 +0000 Subject: [PATCH] Docs: Adjust `wp_is_json_request()` and `wp_is_xml_request()` return value descriptions for consistency. See #48771, #48303. git-svn-id: https://develop.svn.wordpress.org/trunk@46760 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/load.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/load.php b/src/wp-includes/load.php index 97a7bc6254..52d965018c 100644 --- a/src/wp-includes/load.php +++ b/src/wp-includes/load.php @@ -1478,7 +1478,8 @@ function wp_finalize_scraping_edited_file_errors( $scrape_key ) { * * @since 5.0.0 * - * @return bool True if Accepts or Content-Type headers contain application/json, false otherwise. + * @return bool True if `Accepts` or `Content-Type` headers contain `application/json`. + * False otherwise. */ function wp_is_json_request() { @@ -1527,7 +1528,8 @@ function wp_is_jsonp_request() { * * @since 5.2.0 * - * @return bool True if `Accepts` or `Content-Type` headers contain XML, false otherwise. + * @return bool True if `Accepts` or `Content-Type` headers contain `text/xml` + * or one of the related MIME types. False otherwise. */ function wp_is_xml_request() { $accepted = array(