Changeset 41328 for trunk/src/wp-admin/includes/media.php
- Timestamp:
- 09/01/2017 12:27:49 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r41323 r41328 1869 1869 $post_params = apply_filters( 'upload_post_params', $post_params ); 1870 1870 1871 /* 1872 * Since 4.9 the `runtimes` setting is hardcoded in our version of Plupload to `html5,html4`, 1873 * and the `flash_swf_url` and `silverlight_xap_url` are not used. 1874 */ 1871 1875 $plupload_init = array( 1872 'runtimes' => 'html5,flash,silverlight,html4',1873 1876 'browse_button' => 'plupload-browse-button', 1874 1877 'container' => 'plupload-upload-ui', … … 1876 1879 'file_data_name' => 'async-upload', 1877 1880 'url' => $upload_action_url, 1878 'flash_swf_url' => includes_url( 'js/plupload/plupload.flash.swf' ),1879 'silverlight_xap_url' => includes_url( 'js/plupload/plupload.silverlight.xap' ),1880 1881 'filters' => array( 1881 1882 'max_file_size' => $max_upload_size . 'b',
Note: See TracChangeset
for help on using the changeset viewer.