Changeset 19262 for trunk/wp-admin/includes/media.php
- Timestamp:
- 11/12/2011 12:52:26 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/media.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r19260 r19262 1064 1064 <a class='toggle describe-toggle-off' href='#'>$toggle_off</a>"; 1065 1065 } else { 1066 $class = ' form-table';1066 $class = ''; 1067 1067 $toggle_links = ''; 1068 1068 } … … 1109 1109 <tr valign='top'> 1110 1110 <td class='A1B1' id='thumbnail-head-$post->ID'> 1111 <p><a href='$attachment_url' target='_blank'><img class='thumbnail' src='$thumb_url' alt='' style='margin-top: 3px'/></a></p>1111 <p><a href='$attachment_url' target='_blank'><img class='thumbnail' src='$thumb_url' alt='' /></a></p> 1112 1112 <p>$image_edit_button</p> 1113 1113 </td> … … 1268 1268 $upload_action_url = admin_url('async-upload.php'); 1269 1269 $post_id = isset($_REQUEST['post_id']) ? intval($_REQUEST['post_id']) : 0; 1270 $_type = isset($type) ? $type : ''; 1271 $_tab = isset($tab) ? $tab : ''; 1270 1272 1271 1273 $upload_size_unit = $max_upload_size = wp_max_upload_size(); … … 1308 1310 "post_id" => $post_id, 1309 1311 "_wpnonce" => wp_create_nonce('media-form'), 1310 "type" => $ type,1311 "tab" => $ tab,1312 "type" => $_type, 1313 "tab" => $_tab, 1312 1314 "short" => "1", 1313 1315 );
Note: See TracChangeset
for help on using the changeset viewer.