Changeset 49108 for trunk/src/wp-admin/media-upload.php
- Timestamp:
- 10/08/2020 09:13:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/media-upload.php
r48941 r49108 52 52 // Upload type: image, video, file, ...? 53 53 if ( isset( $_GET['type'] ) ) { 54 $type = strval( $_GET['type'] );54 $type = (string) $_GET['type']; 55 55 } else { 56 56 /** … … 67 67 // Tab: gallery, library, or type-specific. 68 68 if ( isset( $_GET['tab'] ) ) { 69 $tab = strval( $_GET['tab'] );69 $tab = (string) $_GET['tab']; 70 70 } else { 71 71 /**
Note: See TracChangeset
for help on using the changeset viewer.