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

git-svn-id: http://core.svn.wordpress.org/trunk@22765 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2012-11-21 15:30:48 +00:00
parent 229a919b27
commit 9b54e5c380
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
}