Make WordPress Core

Ticket #42885: 42885.diff

File 42885.diff, 7.3 KB (added by chetan200891, 7 years ago)

Created patch.

  • src/wp-activate.php

    diff --git a/src/wp-activate.php b/src/wp-activate.php
    index 5150c29..07bd456 100644
    a b get_header( 'wp-activate' ); 
    9999                        <h2><?php _e( 'Your account is now active!' ); ?></h2>
    100100                                <?php
    101101                                echo '<p class="lead-in">';
    102                                 if ( $signup->domain . $signup->path == '' ) {
     102                                if ( '' == $signup->domain . $signup->path ) {
    103103                                        printf(
    104104                                                /* translators: 1: login URL, 2: username, 3: user email, 4: lost password URL */
    105105                                                __( 'Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ),
    get_header( 'wp-activate' ); 
    137137                        </div>
    138138
    139139                        <?php
    140                         if ( $url && $url != network_home_url( '', 'http' ) ) :
     140                        if ( $url && network_home_url( '', 'http' ) != $url ) :
    141141                                switch_to_blog( (int) $result['blog_id'] );
    142142                                $login_url = wp_login_url();
    143143                                restore_current_blog();
  • src/wp-cron.php

    diff --git a/src/wp-cron.php b/src/wp-cron.php
    index acf5ded..5108274 100644
    a b foreach ( $crons as $timestamp => $cronhooks ) { 
    114114
    115115                        $schedule = $v['schedule'];
    116116
    117                         if ( $schedule != false ) {
     117                        if ( false != $schedule ) {
    118118                                $new_args = array( $timestamp, $schedule, $hook, $v['args'] );
    119119                                call_user_func_array( 'wp_reschedule_event', $new_args );
    120120                        }
  • src/wp-login.php

    diff --git a/src/wp-login.php b/src/wp-login.php
    index 4453f82..b2e118e 100644
    a b if ( defined( 'RELOCATE' ) && RELOCATE ) { // Move flag is set 
    441441        }
    442442
    443443        $url = dirname( set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] ) );
    444         if ( $url != get_option( 'siteurl' ) ) {
     444        if ( get_option( 'siteurl' ) != $url ) {
    445445                update_option( 'siteurl', $url );
    446446        }
    447447}
    switch ( $action ) { 
    949949          exit;
    950950                        }
    951951
    952                         if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) {
     952                        if ( ( empty( $redirect_to ) || 'wp-admin/' == $redirect_to || admin_url() == $redirect_to ) ) {
    953953                                // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
    954954                                if ( is_multisite() && ! get_active_blog_for_user( $user->ID ) && ! is_super_admin( $user->ID ) ) {
    955955                                        $redirect_to = user_admin_url();
  • src/wp-mail.php

    diff --git a/src/wp-mail.php b/src/wp-mail.php
    index 977ed0f..f64c7a5 100644
    a b for ( $i = 1; $i <= $count; $i++ ) { 
    101101                                $content_transfer_encoding = explode( ';', $content_transfer_encoding );
    102102                                $content_transfer_encoding = $content_transfer_encoding[0];
    103103                        }
    104                         if ( ( $content_type == 'multipart/alternative' ) && ( false !== strpos( $line, 'boundary="' ) ) && ( '' == $boundary ) ) {
     104                        if ( ( 'multipart/alternative' == $content_type ) && ( false !== strpos( $line, 'boundary="' ) ) && ( '' == $boundary ) ) {
    105105                                $boundary = trim( $line );
    106106                                $boundary = explode( '"', $boundary );
    107107                                $boundary = $boundary[1];
    for ( $i = 1; $i <= $count; $i++ ) { 
    162162
    163163        $subject = trim( $subject );
    164164
    165         if ( $content_type == 'multipart/alternative' ) {
     165        if ( 'multipart/alternative' == $content_type ) {
    166166                $content = explode( '--' . $boundary, $content );
    167167                $content = $content[2];
    168168
    for ( $i = 1; $i <= $count; $i++ ) { 
    212212
    213213        $post_title = xmlrpc_getposttitle( $content );
    214214
    215         if ( $post_title == '' ) {
     215        if ( '' == $post_title ) {
    216216                $post_title = $subject;
    217217        }
    218218
  • src/wp-signup.php

    diff --git a/src/wp-signup.php b/src/wp-signup.php
    index cecaf98..57ce56a 100644
    a b function signup_user( $user_name = '', $user_email = '', $errors = '' ) { 
    573573                <?php show_user_form( $user_name, $user_email, $errors ); ?>
    574574
    575575                <p>
    576                 <?php if ( $active_signup == 'blog' ) { ?>
     576                <?php if ( 'blog' == $active_signup ) { ?>
    577577                        <input id="signupblog" type="hidden" name="signup_for" value="blog" />
    578                 <?php } elseif ( $active_signup == 'user' ) { ?>
     578                <?php } elseif ( 'user' == $active_signup ) { ?>
    579579                        <input id="signupblog" type="hidden" name="signup_for" value="user" />
    580580                <?php } else { ?>
    581581                        <input id="signupblog" type="radio" name="signup_for" value="blog" <?php checked( $signup_for, 'blog' ); ?> />
    if ( current_user_can( 'manage_network' ) ) { 
    898898$newblogname = isset( $_GET['new'] ) ? strtolower( preg_replace( '/^-|-$|[^-a-zA-Z0-9]/', '', $_GET['new'] ) ) : null;
    899899
    900900$current_user = wp_get_current_user();
    901 if ( $active_signup == 'none' ) {
     901if ( 'none' == $active_signup ) {
    902902        _e( 'Registration has been disabled.' );
    903 } elseif ( $active_signup == 'blog' && ! is_user_logged_in() ) {
     903} elseif ( 'blog' == $active_signup && ! is_user_logged_in() ) {
    904904        $login_url = wp_login_url( network_site_url( 'wp-signup.php' ) );
    905905        /* translators: %s: login URL */
    906906        printf( __( 'You must first <a href="%s">log in</a>, and then you can create a new site.' ), $login_url );
    if ( $active_signup == 'none' ) { 
    908908        $stage = isset( $_POST['stage'] ) ? $_POST['stage'] : 'default';
    909909        switch ( $stage ) {
    910910                case 'validate-user-signup':
    911                         if ( $active_signup == 'all' || $_POST['signup_for'] == 'blog' && $active_signup == 'blog' || $_POST['signup_for'] == 'user' && $active_signup == 'user' ) {
     911                        if ( 'all' == $active_signup || 'blog' == $_POST['signup_for'] && 'blog' == $active_signup || 'user' == $_POST['signup_for'] && 'user' == $active_signup ) {
    912912                                validate_user_signup();
    913913                        } else {
    914914                                _e( 'User registration has been disabled.' );
    915915                        }
    916916                        break;
    917917                case 'validate-blog-signup':
    918                         if ( $active_signup == 'all' || $active_signup == 'blog' ) {
     918                        if ( 'all' == $active_signup || 'blog' == $active_signup ) {
    919919                                validate_blog_signup();
    920920                        } else {
    921921                                _e( 'Site registration has been disabled.' );
    if ( $active_signup == 'none' ) { 
    933933                         * @since 3.0.0
    934934                         */
    935935                        do_action( 'preprocess_signup_form' );
    936                         if ( is_user_logged_in() && ( $active_signup == 'all' || $active_signup == 'blog' ) ) {
     936                        if ( is_user_logged_in() && ( 'all' == $active_signup || 'blog' == $active_signup ) ) {
    937937                                signup_another_blog( $newblogname );
    938                         } elseif ( ! is_user_logged_in() && ( $active_signup == 'all' || $active_signup == 'user' ) ) {
     938                        } elseif ( ! is_user_logged_in() && ( 'all' == $active_signup || 'user' == $active_signup ) ) {
    939939                                signup_user( $newblogname, $user_email );
    940                         } elseif ( ! is_user_logged_in() && ( $active_signup == 'blog' ) ) {
     940                        } elseif ( ! is_user_logged_in() && ( 'blog' == $active_signup ) ) {
    941941                                _e( 'Sorry, new registrations are not allowed at this time.' );
    942942                        } else {
    943943                                _e( 'You are logged in already. No need to register again!' );
    if ( $active_signup == 'none' ) { 
    946946                        if ( $newblogname ) {
    947947                                $newblog = get_blogaddress_by_name( $newblogname );
    948948
    949                                 if ( $active_signup == 'blog' || $active_signup == 'all' ) {
     949                                if ( 'blog' == $active_signup || 'all' == $active_signup ) {
    950950                                        /* translators: %s: site address */
    951951                                        printf(
    952952                                                '<p><em>' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '</em></p>',