From 8af2dbc67118d0b3c8fd0903b83008958be412d9 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 18 Aug 2015 23:35:25 +0000 Subject: [PATCH] Correct punctuation/case for inline comment in `async-upload.php` Props chriscct7. Fixes #33408. Built from https://develop.svn.wordpress.org/trunk@33640 git-svn-id: http://core.svn.wordpress.org/trunk@33607 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/async-upload.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/async-upload.php b/wp-admin/async-upload.php index 4a18aa1449..47cae15fb9 100644 --- a/wp-admin/async-upload.php +++ b/wp-admin/async-upload.php @@ -61,7 +61,7 @@ if ( isset($_REQUEST['attachment_id']) && ($id = intval($_REQUEST['attachment_id if ( $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ) ) echo ''; echo '' . _x( 'Edit', 'media item' ) . ''; - $title = $post->post_title ? $post->post_title : wp_basename( $post->guid ); // title shouldn't ever be empty, but use filename just in cas.e + $title = $post->post_title ? $post->post_title : wp_basename( $post->guid ); // Title shouldn't ever be empty, but use filename just in case. echo '
' . esc_html( wp_html_excerpt( $title, 60, '…' ) ) . '
'; break; case 2 : diff --git a/wp-includes/version.php b/wp-includes/version.php index 33a1faa541..dc13643982 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33639'; +$wp_version = '4.4-alpha-33640'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.