Ticket #22572: 22572.patch
| File 22572.patch, 1.5 KB (added by ocean90, 6 months ago) |
|---|
-
wp-admin/includes/media.php
2166 2166 * @since 2.6.0 2167 2167 */ 2168 2168 function media_upload_flash_bypass() { 2169 $post = get_post(); 2169 2170 ?> 2170 2171 <p class="upload-flash-bypass"> 2171 <?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' ); ?>2172 <?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&post_id=' . $post->ID ), '_blank' ); ?> 2172 2173 </p> 2173 2174 <?php 2174 2175 } -
wp-admin/media-new.php
17 17 18 18 wp_enqueue_script('plupload-handlers'); 19 19 20 unset( $_REQUEST['post_id'] );21 22 20 if ( $_POST ) { 21 $post_id = ! empty( $_REQUEST['post_id'] ) ? (int) $_REQUEST['post_id'] : 0; 23 22 $location = 'upload.php'; 24 23 if ( isset($_POST['html-upload']) && !empty($_FILES) ) { 25 24 check_admin_referer('media-form'); 26 25 // Upload File button was clicked 27 $id = media_handle_upload('async-upload', $ _REQUEST['post_id']);26 $id = media_handle_upload('async-upload', $post_id); 28 27 if ( is_wp_error( $id ) ) 29 28 $location .= '?message=3'; 30 29 }
