From f58a801e625d343fd42c8442d413b1371917e031 Mon Sep 17 00:00:00 2001 From: azaozz Date: Fri, 20 Apr 2012 01:10:39 +0000 Subject: [PATCH] Fix typo in the error message shown when a device doesn't support uploading, props SergeyBiryukov, fixes #20410 git-svn-id: http://svn.automattic.com/wordpress/trunk@20544 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/media.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/media.php b/wp-admin/includes/media.php index 7c30b7570..9b5fdd636 100644 --- a/wp-admin/includes/media.php +++ b/wp-admin/includes/media.php @@ -1298,7 +1298,7 @@ function media_upload_form( $errors = null ) { global $type, $tab, $pagenow, $is_IE, $is_opera; if ( ! _device_can_upload() ) { - echo '

' . __('The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead.') . '

'; + echo '

' . __('The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead.') . '

'; return; }