- 388B69C816AD5366DC8A395562CCAEA40281812EE57CF4FD66C01E747242AE4E19207C98F8F5141DBEA902847D2A812CE219EB015F35A3F13717CBBB06AFEFCB
+ A8F51F88DF658815171D139721C03A2077C2D340E895E87EEF70B0818D12DE252304E1C3A43A2E5D02BA0977EF68AB835DEE58E633A11442A7084A661403D02D
mp-wp/wp-admin/edit-attachment-rows.php
(15 . 13)(15 . 6)
8713 <?php print_column_headers('upload'); ?>
8714 </tr>
8715 </thead>
8716
8717 <tfoot>
8718 <tr>
8719 <?php print_column_headers('upload', false); ?>
8720 </tr>
8721 </tfoot>
8722
8723 <tbody id="the-list" class="list:post">
8724 <?php
8725 add_filter('the_title','wp_specialchars');
(51 . 7)(44 . 7)
8727
8728 case 'cb':
8729 ?>
8730 <th scope="row" class="check-column"><input type="checkbox" name="media[]" value="<?php the_ID(); ?>" /></th>
8731 <td scope="row" class="check-column"><input type="checkbox" name="media[]" value="<?php the_ID(); ?>" /></td>
8732 <?php
8733 break;
8734
(82 . 7)(75 . 7)
8736 if ( current_user_can('edit_post', $post->ID) )
8737 $actions['edit'] = '<a href="' . get_edit_post_link($post->ID, true) . '">' . __('Edit') . '</a>';
8738 if ( current_user_can('delete_post', $post->ID) )
8739 $actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID) . "' onclick=\"if ( confirm('" . js_escape(sprintf( ('draft' == $post->post_status) ? __("You are about to delete this attachment '%s'\n 'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this attachment '%s'\n 'Cancel' to stop, 'OK' to delete."), $post->post_title )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
8740 $actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=delete&post=$post->ID", 'delete-post_' . $post->ID) . "'>" . __('Delete') . "</a>";
8741 $actions['view'] = '<a href="' . get_permalink($post->ID) . '" title="' . attribute_escape(sprintf(__('View "%s"'), $title)) . '" rel="permalink">' . __('View') . '</a>';
8742 $action_count = count($actions);
8743 $i = 0;