Changeset 17349
- Timestamp:
- 01/22/2011 06:25:32 PM (15 years ago)
- Location:
- trunk/wp-admin/includes
- Files:
-
- 4 edited
-
class-wp-comments-list-table.php (modified) (1 diff)
-
class-wp-links-list-table.php (modified) (1 diff)
-
class-wp-media-list-table.php (modified) (1 diff)
-
class-wp-posts-list-table.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-comments-list-table.php
r17344 r17349 223 223 </select> 224 224 <?php 225 submit_button( __( 'Filter' ), 'secondary', 'post-query-submit', false);225 submit_button( __( 'Filter' ), 'secondary', false, false, array( 'id' => 'post-query-submit' ) ); 226 226 } 227 227 -
trunk/wp-admin/includes/class-wp-links-list-table.php
r17322 r17349 69 69 ); 70 70 wp_dropdown_categories( $dropdown_options ); 71 submit_button( __( 'Filter' ), 'secondary', 'post-query-submit', false);71 submit_button( __( 'Filter' ), 'secondary', false, false, array( 'id' => 'post-query-submit' ) ); 72 72 ?> 73 73 </div> -
trunk/wp-admin/includes/class-wp-media-list-table.php
r17322 r17349 94 94 95 95 do_action( 'restrict_manage_posts' ); 96 submit_button( __( 'Filter' ), 'secondary', 'post-query-submit', false);96 submit_button( __( 'Filter' ), 'secondary', false, false, array( 'id' => 'post-query-submit' ) ); 97 97 } 98 98 -
trunk/wp-admin/includes/class-wp-posts-list-table.php
r17322 r17349 223 223 } 224 224 do_action( 'restrict_manage_posts' ); 225 submit_button( __( 'Filter' ), 'secondary', 'post-query-submit', false);225 submit_button( __( 'Filter' ), 'secondary', false, false, array( 'id' => 'post-query-submit' ) ); 226 226 } 227 227
Note: See TracChangeset
for help on using the changeset viewer.