Ticket #27230: delete-user.patch
| File delete-user.patch, 1.3 KB (added by , 12 years ago) |
|---|
-
wp-admin/network/users.php
77 77 } 78 78 } 79 79 80 /** 81 * Fires at the end of the delete users form prior to the confirm button for plugins to add items to the form. 82 * 83 * @since 4.0 84 */ 85 do_action( 'delete_user_form', $current_user ); 86 80 87 submit_button( __('Confirm Deletion'), 'delete' ); 81 88 ?> 82 89 </form> -
wp-admin/users.php
248 248 <?php echo '<label for="delete_option1">' . __( 'Attribute all content to:' ) . '</label> '; 249 249 wp_dropdown_users( array( 'name' => 'reassign_user', 'exclude' => array_diff( $userids, array($current_user->ID) ) ) ); ?></li> 250 250 </ul></fieldset> 251 252 <?php 253 /** 254 * Fires at the end of the delete users form prior to the confirm button for plugins to add items to the form 255 * 256 * @since 4.0 257 */ 258 do_action( 'delete_user_form', $current_user ); 259 ?> 251 260 <input type="hidden" name="action" value="dodelete" /> 252 261 <?php submit_button( __('Confirm Deletion'), 'secondary' ); ?> 253 262 <?php else : ?>