Ticket #15287: wp-admin-1.patch
| File wp-admin-1.patch, 2.2 KB (added by wahgnube, 3 years ago) |
|---|
-
wp-admin/edit-comments.php
219 219 <input type="hidden" name="paged" value="<?php echo esc_attr( absint( $_REQUEST['paged'] ) ); ?>" /> 220 220 <?php } ?> 221 221 222 </form> 222 223 <?php $wp_list_table->display(); ?> 223 224 </div> 224 </form>225 225 226 226 <div id="ajax-response"></div> 227 227 -
wp-admin/edit-tags.php
36 36 $ret = wp_insert_term( $_POST['tag-name'], $taxonomy, $_POST ); 37 37 $location = 'edit-tags.php?taxonomy=' . $taxonomy; 38 38 if ( 'post' != $post_type ) 39 $location .= '& post_type=' . $post_type;39 $location .= '&post_type=' . $post_type; 40 40 41 41 if ( $referer = wp_get_original_referer() ) { 42 42 if ( false !== strpos( $referer, 'edit-tags.php' ) ) -
wp-admin/themes.php
119 119 120 120 </div> 121 121 122 <br class="clear" >122 <br class="clear" /> 123 123 <?php 124 124 if ( ! current_user_can( 'switch_themes' ) ) { 125 125 echo '</div>'; -
wp-admin/upload.php
214 214 <?php $wp_list_table->display(); ?> 215 215 <div id="ajax-response"></div> 216 216 <?php find_posts_div(); ?> 217 <br class="clear" />218 </div>219 217 </form> 220 218 <br class="clear" /> 221 219 -
wp-admin/includes/template.php
559 559 </tr> 560 560 561 561 <tr><td colspan="2" class="submit"> 562 <?php submit_button( __( 'Add Custom Field' ), 'add:the-list:newmeta', 'addmeta ', false, array( 'id' => 'addmetasub','tabindex' => '9' ) ); ?>562 <?php submit_button( __( 'Add Custom Field' ), 'add:the-list:newmeta', 'addmetasub', false, array( 'tabindex' => '9' ) ); ?> 563 563 <?php wp_nonce_field( 'add-meta', '_ajax_nonce-add-meta', false ); ?> 564 564 </td></tr> 565 565 </tbody>
