mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-06 13:29:35 +00:00
Multisite: Display content attribution drop down when deleting a user
The previous move from echo() to _e() left some of the output hanging. Introduced in [32333]. Merge of [34057] to the 4.3 branch. Props figureone. Fixes #33811. Built from https://develop.svn.wordpress.org/branches/4.3@34058 git-svn-id: http://core.svn.wordpress.org/branches/4.3@34026 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b04ce4a437
commit
9f25a307f5
@ -90,7 +90,8 @@ function confirm_delete_users( $users ) {
|
|||||||
<li><label><input type="radio" id="delete_option0" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="delete" checked="checked" />
|
<li><label><input type="radio" id="delete_option0" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="delete" checked="checked" />
|
||||||
<?php _e( 'Delete all content.' ); ?></label></li>
|
<?php _e( 'Delete all content.' ); ?></label></li>
|
||||||
<li><label><input type="radio" id="delete_option1" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="reassign" />
|
<li><label><input type="radio" id="delete_option1" name="delete[<?php echo $details->userblog_id . '][' . $delete_user->ID ?>]" value="reassign" />
|
||||||
<?php _e( 'Attribute all content to:' ) . "</label>\n" . $user_dropdown; ?></li>
|
<?php _e( 'Attribute all content to:' ); ?></label>
|
||||||
|
<?php echo $user_dropdown; ?></li>
|
||||||
</ul>
|
</ul>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user