Changeset 16061 for trunk/wp-admin/includes/list-table-posts.php
- Timestamp:
- 10/28/2010 09:56:43 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/list-table-posts.php
r16003 r16061 224 224 } 225 225 do_action( 'restrict_manage_posts' ); 226 submit_button( __( 'Filter' ), 'secondary', 'post-query-submit', false ); 226 227 ?> 227 <input type="submit" id="post-query-submit" value="<?php esc_attr_e( 'Filter' ); ?>" class="button-secondary" />228 228 </div> 229 229 <?php … … 231 231 232 232 if ( $this->is_trash && current_user_can( $post_type_object->cap->edit_others_posts ) ) { 233 ?> 234 <input type="submit" name="delete_all" id="delete_all" value="<?php esc_attr_e( 'Empty Trash' ); ?>" class="button-secondary apply" /> 235 <?php 233 submit_button( __( 'Empty Trash' ), 'button-secondary apply', 'delete_all', false ); 236 234 } 237 235 } … … 986 984 <img class="waiting" style="display:none;" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /> 987 985 <?php } else { 988 $update_text = __( 'Update' ); 989 ?> 990 <input accesskey="s" class="button-primary alignright" type="submit" name="bulk_edit" value="<?php echo esc_attr( $update_text ); ?>" /> 991 <?php } ?> 986 submit_button( __( 'Update' ), 'button-primary alignright', 'bulk_edit', false, array( 'accesskey' => 's' ) ); 987 } ?> 992 988 <input type="hidden" name="post_view" value="<?php echo esc_attr( $m ); ?>" /> 993 989 <input type="hidden" name="screen" value="<?php echo esc_attr( $screen->id ); ?>" />
Note: See TracChangeset
for help on using the changeset viewer.