From 67cb80cac3d29d57f0a16fcbbe0e952820e22a10 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Thu, 20 Oct 2022 18:23:14 +0000 Subject: [PATCH] Docs: Add missing default parameter value in trackback_response() docblock. Previously: [54656] [54657] Props rakibwordpress, audrasjb, SergeyBiryukov. Fixes #56867. See #56792. Built from https://develop.svn.wordpress.org/trunk@54658 git-svn-id: http://core.svn.wordpress.org/trunk@54210 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-trackback.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 428d342422..07e43d606e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54654'; +$wp_version = '6.2-alpha-54658'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-trackback.php b/wp-trackback.php index c357e3193e..d7d1881417 100644 --- a/wp-trackback.php +++ b/wp-trackback.php @@ -25,7 +25,7 @@ wp_set_current_user( 0 ); * * @param int|bool $error Whether there was an error. * Default '0'. Accepts '0' or '1', true or false. - * @param string $error_message Error message if an error occurred. + * @param string $error_message Error message if an error occurred. Default empty string. */ function trackback_response( $error = 0, $error_message = '' ) { header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ) );