Changeset 8645 for trunk/wp-admin/media-upload.php
- Timestamp:
- 08/14/2008 06:30:38 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/media-upload.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/media-upload.php
r7213 r8645 1 1 <?php 2 /** 3 * Manage media uploaded file. 4 * 5 * There are many filters in here for media. Plugins can extend functionality 6 * by hooking into the filters. 7 * 8 * @package WordPress 9 * @subpackage Administration 10 */ 11 12 /** Load WordPress Administration Bootstrap */ 2 13 require_once('admin.php'); 3 14 wp_enqueue_script('swfupload'); … … 12 23 13 24 // IDs should be integers 14 $ID = isset($ID) ? (int) $ID : 0;25 $ID = isset($ID) ? (int) $ID : 0; 15 26 $post_id = isset($post_id)? (int) $post_id : 0; 16 27
Note: See TracChangeset
for help on using the changeset viewer.