Ticket #22552: 22552-2.patch
File 22552-2.patch, 2.1 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/media.php
1498 1498 'multipart_params' => $post_params 1499 1499 ); 1500 1500 1501 // Multi-file uploading doesn't currently work in iOS Safari, 1502 // single-file allows the built-in camera to be used as source for images 1503 if ( wp_is_mobile() ) 1504 $plupload_init['multi_selection'] = false; 1505 1501 1506 $plupload_init = apply_filters( 'plupload_init', $plupload_init ); 1502 1507 1503 1508 ?> -
wp-includes/functions.php
2273 2273 * @param mixed $response Variable (usually an array or object) to encode as JSON, then print and die. 2274 2274 */ 2275 2275 function wp_send_json( $response ) { 2276 nocache_headers(); 2276 2277 @header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) ); 2278 2277 2279 echo json_encode( $response ); 2280 2278 2281 if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) 2279 2282 wp_die(); 2280 2283 else -
wp-includes/js/media-models.js
789 789 } 790 790 }); 791 791 792 }(jQuery)); 793 No newline at end of file 792 // Clean up. Prevents mobile browsers caching 793 $(window).on('unload', function(){ 794 window.wp = null; 795 }); 796 797 }(jQuery)); -
wp-includes/media.php
1254 1254 'multipart' => true, 1255 1255 'urlstream_upload' => true, 1256 1256 ); 1257 1258 // Multi-file uploading doesn't currently work in iOS Safari, 1259 // single-file allows the built-in camera to be used as source for images 1260 if ( wp_is_mobile() ) 1261 $defaults['multi_selection'] = false; 1257 1262 1258 1263 $defaults = apply_filters( 'plupload_default_settings', $defaults ); 1259 1264