From d5407ec71923be8e3453e8aca267a0ed65bbc59a Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 7 May 2021 18:24:23 +0000 Subject: [PATCH] Docs: Use correct `@since` tag notation. This corrects the version number specified by the `@since` tag for the `delete_theme` and `deleted_theme` action hooks introduced in [50826] to contain a full, 3 digit version. Props ocean90. See #16401. git-svn-id: https://develop.svn.wordpress.org/trunk@50827 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/theme.php b/src/wp-admin/includes/theme.php index bd47b37ce6..ade91d741a 100644 --- a/src/wp-admin/includes/theme.php +++ b/src/wp-admin/includes/theme.php @@ -75,7 +75,7 @@ function delete_theme( $stylesheet, $redirect = '' ) { /** * Fires immediately before a theme deletion attempt. * - * @since 5.8 + * @since 5.8.0 * * @param string $stylesheet Stylesheet of the theme to delete. */ @@ -88,7 +88,7 @@ function delete_theme( $stylesheet, $redirect = '' ) { /** * Fires immediately after a theme deletion attempt. * - * @since 5.8 + * @since 5.8.0 * * @param string $stylesheet Stylesheet of the theme to delete. * @param bool $deleted Whether the theme deletion was successful.