Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (8 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/ms-delete-site.php

    r41934 r42343  
    1010require_once( dirname( __FILE__ ) . '/admin.php' );
    1111
    12 if ( !is_multisite() )
     12if ( ! is_multisite() ) {
    1313    wp_die( __( 'Multisite support is not enabled.' ) );
     14}
    1415
    15 if ( ! current_user_can( 'delete_site' ) )
    16     wp_die(__( 'Sorry, you are not allowed to delete this site.'));
     16if ( ! current_user_can( 'delete_site' ) ) {
     17    wp_die( __( 'Sorry, you are not allowed to delete this site.' ) );
     18}
    1719
    1820if ( isset( $_GET['h'] ) && $_GET['h'] != '' && get_option( 'delete_blog_hash' ) != false ) {
     
    2830$user = wp_get_current_user();
    2931
    30 $title = __( 'Delete Site' );
     32$title       = __( 'Delete Site' );
    3133$parent_file = 'tools.php';
    3234require_once( ABSPATH . 'wp-admin/admin-header.php' );
     
    4648
    4749    /* translators: Do not translate USERNAME, URL_DELETE, SITE_NAME: those are placeholders. */
    48     $content = __( "Howdy ###USERNAME###,
     50    $content = __(
     51        "Howdy ###USERNAME###,
    4952
    5053You recently clicked the 'Delete Site' link on your site and filled in a
     
    6164Thanks for using the site,
    6265Webmaster
    63 ###SITE_NAME###" );
     66###SITE_NAME###"
     67    );
    6468    /**
    6569     * Filters the email content sent when a site in a Multisite network is deleted.
     
    7579    $content = str_replace( '###SITE_NAME###', get_network()->site_name, $content );
    7680
    77     wp_mail( get_option( 'admin_email' ), "[ " . wp_specialchars_decode( get_option( 'blogname' ) ) . " ] ".__( 'Delete My Site' ), $content );
     81    wp_mail( get_option( 'admin_email' ), '[ ' . wp_specialchars_decode( get_option( 'blogname' ) ) . ' ] ' . __( 'Delete My Site' ), $content );
    7882
    7983    if ( $switched_locale ) {
     
    8286    ?>
    8387
    84     <p><?php _e( 'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.' ) ?></p>
     88    <p><?php _e( 'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.' ); ?></p>
    8589
    86 <?php } else {
     90<?php
     91} else {
    8792    ?>
    88     <p><?php printf( __( 'If you do not want to use your %s site any more, you can delete it using the form below. When you click <strong>Delete My Site Permanently</strong> you will be sent an email with a link in it. Click on this link to delete your site.'), get_network()->site_name); ?></p>
    89     <p><?php _e( 'Remember, once deleted your site cannot be restored.' ) ?></p>
     93    <p><?php printf( __( 'If you do not want to use your %s site any more, you can delete it using the form below. When you click <strong>Delete My Site Permanently</strong> you will be sent an email with a link in it. Click on this link to delete your site.' ), get_network()->site_name ); ?></p>
     94    <p><?php _e( 'Remember, once deleted your site cannot be restored.' ); ?></p>
    9095
    9196    <form method="post" name="deletedirect">
    92         <?php wp_nonce_field( 'delete-blog' ) ?>
     97        <?php wp_nonce_field( 'delete-blog' ); ?>
    9398        <input type="hidden" name="action" value="deleteblog" />
    94         <p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php
     99        <p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong>
     100        <?php
    95101            printf(
    96102                /* translators: %s: site address */
     
    98104                $blog->domain . $blog->path
    99105            );
    100         ?></strong></label></p>
     106        ?>
     107        </strong></label></p>
    101108        <?php submit_button( __( 'Delete My Site Permanently' ) ); ?>
    102109    </form>
    103     <?php
     110    <?php
    104111}
    105112echo '</div>';
Note: See TracChangeset for help on using the changeset viewer.