Changeset 6026 for trunk/wp-admin/edit.php
- Timestamp:
- 09/03/2007 11:32:58 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r5963 r6026 84 84 } else { 85 85 $author_user = get_userdata( get_query_var( 'author' ) ); 86 $h2_author = ' ' . sprintf(__('by %s'), wp_specialchars( $author_user->display_name )); 86 $h2_author = ' ' . sprintf(__('by %s'), wp_specialchars( $author_user->display_name )); 87 87 } 88 88 } … … 95 95 96 96 <form name="searchform" id="searchform" action="" method="get"> 97 <fieldset><legend><?php _e('Search terms…'); ?></legend> 98 <input type="text" name="s" id="s" value="<?php the_search_query(); ?>" size="17" /> 99 </fieldset> 100 101 <fieldset><legend><?php _e('Status…'); ?></legend> 97 <fieldset><legend><?php _e('Search terms…'); ?></legend> 98 <input type="text" name="s" id="s" value="<?php the_search_query(); ?>" size="17" /> 99 </fieldset> 100 101 <fieldset><legend><?php _e('Status…'); ?></legend> 102 102 <select name='post_status'> 103 103 <option<?php selected( @$_GET['post_status'], 0 ); ?> value='0'><?php _e('Any'); ?></option> … … 108 108 </fieldset> 109 109 110 <?php 110 <?php 111 111 $editable_ids = get_editable_user_ids( $user_ID ); 112 112 if ( $editable_ids && count( $editable_ids ) > 1 ) : … … 154 154 <?php wp_dropdown_categories('show_option_all='.__('All').'&hide_empty=1&hierarchical=1&show_count=1&selected='.$cat);?> 155 155 </fieldset> 156 <input type="submit" id="post-query-submit" value="<?php _e('Filter »'); ?>" class="button" /> 156 <input type="submit" id="post-query-submit" value="<?php _e('Filter »'); ?>" class="button" /> 157 157 </form> 158 158
Note: See TracChangeset
for help on using the changeset viewer.