From 77b1aa0cf3655e16e316a028bbbdbaa97e94cfaa Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 12 Feb 2022 14:45:00 +0000 Subject: [PATCH] Docs: Fix typo in a comment in `wp_get_image_mime()`. Follow-up to [39831]. Props dilipbheda. Fixes #55154. Built from https://develop.svn.wordpress.org/trunk@52719 git-svn-id: http://core.svn.wordpress.org/trunk@52308 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 18ce7c2fec..82b19ec8f1 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3237,7 +3237,7 @@ function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) { function wp_get_image_mime( $file ) { /* * Use exif_imagetype() to check the mimetype if available or fall back to - * getimagesize() if exif isn't avaialbe. If either function throws an Exception + * getimagesize() if exif isn't available. If either function throws an Exception * we assume the file could not be validated. */ try { diff --git a/wp-includes/version.php b/wp-includes/version.php index 459cc58b18..a5c41ce6cc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52718'; +$wp_version = '6.0-alpha-52719'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.