Have the media modal direct users to media-new.php for the browser uploader. fixes #22444.

git-svn-id: https://develop.svn.wordpress.org/trunk@22765 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-11-21 15:30:48 +00:00
parent 0b402a8dc1
commit 431314d357
1 changed files with 1 additions and 1 deletions

View File

@ -2164,7 +2164,7 @@ function wp_media_insert_url_form( $default_view = 'image' ) {
function media_upload_flash_bypass() {
?>
<p class="upload-flash-bypass">
<?php _e('You are using the multi-file uploader. Problems? Try the <a href="#">browser uploader</a> instead.'); ?>
<?php printf( __( 'You are using the multi-file uploader. Problems? Try the <a href="%1$s" target="%2$s">browser uploader</a> instead.' ), admin_url( 'media-new.php?browser-uploader' ), '_blank' ); ?>
</p>
<?php
}