diff --git src/wp-admin/ms-delete-site.php src/wp-admin/ms-delete-site.php
index 53b26b9..9ea380b 100644
|
|
|
Webmaster |
| 85 | 85 | <form method="post" name="deletedirect"> |
| 86 | 86 | <?php wp_nonce_field( 'delete-blog' ) ?> |
| 87 | 87 | <input type="hidden" name="action" value="deleteblog" /> |
| 88 | | <p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php printf( __( "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again." ), is_subdomain_install() ? $blog->domain : $blog->domain . $blog->path ); ?></strong></label></p> |
| | 88 | <p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php printf( __( "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %1$s again." ), $blog->domain . $blog->path ); ?></strong></label></p> |
| 89 | 89 | <?php submit_button( __( 'Delete My Site Permanently' ) ); ?> |
| 90 | 90 | </form> |
| 91 | 91 | <?php |