From 97380ec1ce112885f5be71290fa2ba5b703a93fb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 17 Feb 2020 03:30:04 +0000 Subject: [PATCH] Docs: Fix typo in a comment in `WP_REST_Attachments_Controller::create_item()`. See #48303. Built from https://develop.svn.wordpress.org/trunk@47297 git-svn-id: http://core.svn.wordpress.org/trunk@47097 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../rest-api/endpoints/class-wp-rest-attachments-controller.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php b/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php index eba5fa1388..2ce875440d 100644 --- a/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php +++ b/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php @@ -189,7 +189,7 @@ class WP_REST_Attachments_Controller extends WP_REST_Posts_Controller { require_once ABSPATH . 'wp-admin/includes/media.php'; require_once ABSPATH . 'wp-admin/includes/image.php'; - // Post-process the upload (create image sub-sizes, make PDF thumbnalis, etc.) and insert attachment meta. + // Post-process the upload (create image sub-sizes, make PDF thumbnails, etc.) and insert attachment meta. // At this point the server may run out of resources and post-processing of uploaded images may fail. wp_update_attachment_metadata( $attachment_id, wp_generate_attachment_metadata( $attachment_id, $file ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0144386ced..2267077394 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-beta1-47296'; +$wp_version = '5.4-beta1-47297'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.