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
This commit is contained in:
parent
a7ef8337be
commit
f58a801e62
|
@ -1298,7 +1298,7 @@ function media_upload_form( $errors = null ) {
|
||||||
global $type, $tab, $pagenow, $is_IE, $is_opera;
|
global $type, $tab, $pagenow, $is_IE, $is_opera;
|
||||||
|
|
||||||
if ( ! _device_can_upload() ) {
|
if ( ! _device_can_upload() ) {
|
||||||
echo '<p>' . __('The web browser on your device cannot be used to upload files. You may be able to use the <a href=" http://wordpress.org/extend/mobile/">native app for your device</a> instead.') . '</p>';
|
echo '<p>' . __('The web browser on your device cannot be used to upload files. You may be able to use the <a href="http://wordpress.org/extend/mobile/">native app for your device</a> instead.') . '</p>';
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue