Changeset 47122 for trunk/src/wp-admin/media-upload.php
- Timestamp:
- 01/29/2020 12:43:23 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/media-upload.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/media-upload.php
r45611 r47122 29 29 header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); 30 30 31 // IDs should be integers 31 // IDs should be integers. 32 32 $ID = isset( $ID ) ? (int) $ID : 0; 33 33 $post_id = isset( $post_id ) ? (int) $post_id : 0; … … 50 50 } 51 51 52 // Upload type: image, video, file, .. ?52 // Upload type: image, video, file, ...? 53 53 if ( isset( $_GET['type'] ) ) { 54 54 $type = strval( $_GET['type'] );
Note: See TracChangeset
for help on using the changeset viewer.