From a791550056396d7e5ec6db6d4b83eec5c1cdcbf9 Mon Sep 17 00:00:00 2001 From: Andrew Ozz 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: https://develop.svn.wordpress.org/trunk@20544 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 7c30b75704..9b5fdd6364 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; }