Changeset 8312
- Timestamp:
- 07/11/2008 03:11:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r8310 r8312 1419 1419 function media_upload_flash_bypass() { 1420 1420 echo '<p class="upload-flash-bypass">'; 1421 printf( __('You are using the Flash uploader. Problems? Try the <a href="%s">Browser uploader</a> instead.'), add_query_arg('flash', 0) );1421 printf( __('You are using the Flash uploader. Problems? Try the <a href="%s">Browser uploader</a> instead.'), clean_url(add_query_arg('flash', 0)) ); 1422 1422 echo '</p>'; 1423 1423 } … … 1429 1429 if ( array_key_exists('flash', $_REQUEST) ) 1430 1430 // the user manually selected the browser uploader, so let them switch back to Flash 1431 printf( __('You are using the Browser uploader. Try the <a href="%s">Flash uploader</a> instead.'), add_query_arg('flash', 1) );1431 printf( __('You are using the Browser uploader. Try the <a href="%s">Flash uploader</a> instead.'), clean_url(add_query_arg('flash', 1)) ); 1432 1432 else 1433 1433 // the user probably doesn't have Flash
Note: See TracChangeset
for help on using the changeset viewer.