Changeset 7043 for trunk/wp-admin/media-upload.php
- Timestamp:
- 02/26/2008 07:30:10 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/media-upload.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/media-upload.php
r6983 r7043 20 20 21 21 // upload type: image, video, file, ..? 22 $type = @strval($_GET['type']); 22 if ( isset($_GET['tab']) ) 23 $tab = strval($_GET['tab']); 24 else 25 $tab = apply_filters('media_upload_default_tab', 'computer'); 23 26 24 27 // let the action code decide how to handle the request 25 do_action("media_upload_ {$type}");28 do_action("media_upload_$tab"); 26 29 27 30 ?>
Note: See TracChangeset
for help on using the changeset viewer.