Changeset 16868
- Timestamp:
- 12/10/2010 08:22:34 PM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r16856 r16868 221 221 222 222 <form id="comments-form" action="" method="post"> 223 224 <?php if ( $wp_list_table->has_items() ) : ?> 225 223 226 <p class="search-box"> 224 227 <label class="screen-reader-text" for="comment-search-input"><?php _e( 'Search Comments' ); ?>:</label> … … 226 229 <?php submit_button( __( 'Search Comments' ), 'button', 'submit', false ); ?> 227 230 </p> 231 232 <?php endif; ?> 233 228 234 <?php if ( $post_id ) : ?> 229 235 <input type="hidden" name="p" value="<?php echo esc_attr( intval( $post_id ) ); ?>" /> -
trunk/wp-admin/edit.php
r16856 r16868 228 228 229 229 <form id="posts-filter" action="" method="get"> 230 231 <?php if ( $wp_list_table->has_items() ) : ?> 232 230 233 <p class="search-box"> 231 234 <label class="screen-reader-text" for="post-search-input"><?php echo $post_type_object->labels->search_items; ?>:</label> … … 234 237 </p> 235 238 239 <?php endif; ?> 240 236 241 <input type="hidden" name="post_status" class="post_status_page" value="<?php echo !empty($_REQUEST['post_status']) ? esc_attr($_REQUEST['post_status']) : 'all'; ?>" /> 237 242 <input type="hidden" name="post_type" class="post_type_page" value="<?php echo $post_type; ?>" /> -
trunk/wp-admin/link-manager.php
r16847 r16868 76 76 ?> 77 77 78 <form class="search-form" action="" method="get"> 78 <form id="posts-filter" action="" method="post"> 79 80 <?php if ( $wp_list_table->has_items() ) : ?> 81 79 82 <p class="search-box"> 80 83 <label class="screen-reader-text" for="link-search-input"><?php _e( 'Search Links' ); ?>:</label> … … 82 85 <?php submit_button( __( 'Search Links' ), 'button', '', false ); ?> 83 86 </p> 84 </form>85 <br class="clear" />86 87 87 <form id="posts-filter" action="" method="post"> 88 <?php endif; ?> 89 88 90 <?php $wp_list_table->display(); ?> 91 89 92 <div id="ajax-response"></div> 90 93 </form> -
trunk/wp-admin/plugins.php
r16776 r16868 363 363 <h2><?php echo esc_html( $title ); if ( current_user_can('install_plugins') ) { ?> <a href="plugin-install.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'plugin'); ?></a><?php } ?></h2> 364 364 365 <form method="get" action=""> 365 <?php do_action( 'pre_current_active_plugins', $plugins['all'] ) ?> 366 367 <?php $wp_list_table->views(); ?> 368 369 <form method="post" action=""> 370 371 <?php if ( $wp_list_table->has_items() ) : ?> 372 366 373 <p class="search-box"> 367 374 <label class="screen-reader-text" for="plugin-search-input"><?php _e( 'Search Plugins' ); ?>:</label> … … 369 376 <?php submit_button( __( 'Search Installed Plugins' ), 'button', '', false ); ?> 370 377 </p> 371 </form> 372 373 <?php do_action( 'pre_current_active_plugins', $plugins['all'] ) ?> 374 375 <?php $wp_list_table->views(); ?> 376 377 <form method="post" action=""> 378 379 <?php endif; ?> 380 378 381 <input type="hidden" name="plugin_status" value="<?php echo esc_attr($status) ?>" /> 379 382 <input type="hidden" name="paged" value="<?php echo esc_attr($page) ?>" /> -
trunk/wp-admin/upload.php
r16333 r16868 203 203 <?php $wp_list_table->views(); ?> 204 204 205 <form class="search-form" action="" method="get"> 205 <form id="posts-filter" action="" method="post"> 206 207 <?php if ( $wp_list_table->has_items() ) : ?> 208 206 209 <p class="search-box"> 207 210 <label class="screen-reader-text" for="media-search-input"><?php _e( 'Search Media' ); ?>:</label> … … 209 212 <?php submit_button( __( 'Search Media' ), 'button', 'submit', false ); ?> 210 213 </p> 211 </form> 212 213 <form id="posts-filter" action="" method="post"> 214 215 <?php endif; ?> 216 214 217 <?php $wp_list_table->display(); ?> 218 215 219 <div id="ajax-response"></div> 216 220 <?php find_posts_div(); ?> -
trunk/wp-admin/users.php
r16496 r16868 354 354 <?php $wp_list_table->views(); ?> 355 355 356 <form class="search-form" action="" method="get"> 356 <form action="" method="post"> 357 358 <?php if ( $wp_list_table->has_items() ) : ?> 359 357 360 <p class="search-box"> 358 361 <label class="screen-reader-text" for="user-search-input"><?php _e( 'Search Users' ); ?>:</label> … … 360 363 <?php submit_button( __( 'Search Users' ), 'button', 'submit', false ); ?> 361 364 </p> 362 </form> 363 364 <form id="posts-filter" action="" method="post"> 365 366 <?php endif; ?> 367 365 368 <?php $wp_list_table->display(); ?> 366 369 </form>
Note: See TracChangeset
for help on using the changeset viewer.