Ticket #22572: 22572.2.patch
| File 22572.2.patch, 1.9 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'] );20 $post_id = ! empty( $_REQUEST['post_id'] ) ? (int) $_REQUEST['post_id'] : 0; 21 21 22 22 if ( $_POST ) { 23 23 $location = 'upload.php'; 24 24 if ( isset($_POST['html-upload']) && !empty($_FILES) ) { 25 25 check_admin_referer('media-form'); 26 26 // Upload File button was clicked 27 $id = media_handle_upload('async-upload', $ _REQUEST['post_id']);27 $id = media_handle_upload('async-upload', $post_id); 28 28 if ( is_wp_error( $id ) ) 29 29 $location .= '?message=3'; 30 30 } … … 68 68 <?php media_upload_form(); ?> 69 69 70 70 <script type="text/javascript"> 71 var post_id = 0, shortform = 3;71 var post_id = <?php echo $post_id; ?>, shortform = 3; 72 72 </script> 73 <input type="hidden" name="post_id" id="post_id" value=" 0" />73 <input type="hidden" name="post_id" id="post_id" value="<?php echo $post_id; ?>" /> 74 74 <?php wp_nonce_field('media-form'); ?> 75 75 <div id="media-items" class="hide-if-no-js"></div> 76 76 </form>
