Changeset 8948 for trunk/wp-admin/edit.php
- Timestamp:
- 09/22/2008 03:27:48 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r8943 r8948 11 11 12 12 // Handle bulk actions 13 if ( !empty($_GET['action']) && $_GET['action'] != 'Actions') {13 if ( isset($_GET['action']) && $_GET['action'] != -1 && isset($_GET['doaction']) ) { 14 14 switch ( $_GET['action'] ) { 15 15 case 'delete': … … 82 82 <div class="wrap"> 83 83 84 <form id="posts-filter" action="" method="get"> 85 84 <form id="adv-settings" action="" method="get"> 86 85 <div id="show-settings"><a href="#edit_settings" id="show-settings-link" class="hide-if-no-js"><?php _e('Advanced Options') ?></a> 87 86 <a href="#edit_settings" id="hide-settings-link" class="hide-if-js hide-if-no-js"><?php _e('Hide Options') ?></a></div> … … 94 93 <br class="clear" /> 95 94 </div></div> 96 </div> 95 <?php wp_nonce_field( 'hiddencolumns', 'hiddencolumnsnonce', false ); ?> 96 </div></form> 97 97 98 98 <h2><?php … … 127 127 ?></h2> 128 128 129 <form id="posts-filter" action="" method="get"> 129 130 <ul class="subsubsub"> 130 131 <?php … … 154 155 <?php if ( isset($_GET['post_status'] ) ) : ?> 155 156 <input type="hidden" name="post_status" value="<?php echo attribute_escape($_GET['post_status']) ?>" /> 156 <?php 157 endif; 157 <?php endif; 158 158 159 159 if ( isset($_GET['posted']) && $_GET['posted'] ) : $_GET['posted'] = (int) $_GET['posted']; ?> … … 186 186 <div class="alignleft"> 187 187 <select name="action"> 188 <option value=" " selected="selected"><?php _e('Actions'); ?></option>188 <option value="-1" selected="selected"><?php _e('Actions'); ?></option> 189 189 <option value="edit"><?php _e('Edit'); ?></option> 190 190 <option value="delete"><?php _e('Delete'); ?></option> … … 241 241 242 242 <?php include( 'edit-post-rows.php' ); ?> 243 244 <?php wp_nonce_field( 'hiddencolumns', 'hiddencolumnsnonce', false ); ?>245 243 246 244 </form>
Note: See TracChangeset
for help on using the changeset viewer.