From 690fe018e1cda00b69f6c35145cadd6cabab646f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 2 Mar 2024 13:49:06 +0000 Subject: [PATCH] Docs: Document the `$xmlrpc_logging` global in `logIO()`. Follow-up to [1348], [19935]. Props viralsampat, upadalavipul, sabernhardt. See #60021. Built from https://develop.svn.wordpress.org/trunk@57752 git-svn-id: http://core.svn.wordpress.org/trunk@57253 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- xmlrpc.php | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index cd74b468ea..5ed57a2f6b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-beta3-57751'; +$wp_version = '6.5-beta3-57752'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/xmlrpc.php b/xmlrpc.php index b37abde3c2..5929020857 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -91,10 +91,13 @@ exit; /** * logIO() - Writes logging info to a file. * + * @since 1.2.0 * @deprecated 3.4.0 Use error_log() * @see error_log() * - * @param string $io Whether input or output + * @global int|bool $xmlrpc_logging Whether to enable XML-RPC logging. + * + * @param string $io Whether input or output. * @param string $msg Information describing logging reason. */ function logIO( $io, $msg ) {