Networks and Sites: Add a clearer warning message before deleting a site from a network.
Props johnjamesjacoby, kebbet, cafenoirdesign, Mista-Flo, johnbillion Fixes #51358 Built from https://develop.svn.wordpress.org/trunk@58098 git-svn-id: http://core.svn.wordpress.org/trunk@57563 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9feb8a6925
commit
d2434ccaa9
|
@ -118,8 +118,20 @@ if ( isset( $_GET['action'] ) ) {
|
|||
<input type="hidden" name="id" value="<?php echo esc_attr( $id ); ?>" />
|
||||
<input type="hidden" name="_wp_http_referer" value="<?php echo esc_attr( wp_get_referer() ); ?>" />
|
||||
<?php wp_nonce_field( $site_action . '_' . $id, '_wpnonce', false ); ?>
|
||||
<p><?php printf( $manage_actions[ $site_action ], $site_address ); ?></p>
|
||||
<?php submit_button( __( 'Confirm' ), 'primary' ); ?>
|
||||
<?php
|
||||
if ( 'deleteblog' === $site_action ) {
|
||||
$submit = __( 'Delete this site permanently' );
|
||||
?>
|
||||
<div class="notice notice-warning inline">
|
||||
<p><?php _e( 'Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.' ); ?>
|
||||
</div>
|
||||
<?php
|
||||
} else {
|
||||
$submit = __( 'Confirm' );
|
||||
}
|
||||
?>
|
||||
<p><?php printf( $manage_actions[ $site_action ], "<strong>{$site_address}</strong>" ); ?></p>
|
||||
<?php submit_button( $submit, 'primary' ); ?>
|
||||
</form>
|
||||
</div>
|
||||
<?php
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.6-alpha-58097';
|
||||
$wp_version = '6.6-alpha-58098';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue