Make WordPress Core

Ticket #48716: 48716.patch

File 48716.patch, 1.6 KB (added by sathyapulse, 5 years ago)

48716.patch

  • wp-admin/includes/class-wp-site-health.php

     
    723723                if ( $response['is_secure'] ) {
    724724                        $result['label'] = sprintf(
    725725                                /* translators: %s: The server PHP version. */
    726                                 __( 'Your version of PHP (%s) should be updated' ),
     726                                __( 'Your version of PHP (%s) is out of date and should be updated' ),
    727727                                PHP_VERSION
    728728                        );
    729729                        $result['status'] = 'recommended';
     
    734734                // Anything no longer secure must be updated.
    735735                $result['label'] = sprintf(
    736736                        /* translators: %s: The server PHP version. */
    737                         __( 'Your version of PHP (%s) requires an update' ),
     737                        __( 'Your version of PHP (%s) is out of date and requires an update' ),
    738738                        PHP_VERSION
    739739                );
    740740                $result['status']         = 'critical';
  • wp-login.php

     
    12511251                                $admin_email_check_interval = (int) apply_filters( 'admin_email_check_interval', 6 * MONTH_IN_SECONDS );
    12521252
    12531253                                if ( $admin_email_check_interval > 0 && time() > $admin_email_lifespan ) {
    1254                                         $redirect_to = add_query_arg( 'action', 'confirm_admin_email', wp_login_url( $redirect_to ) );
     1254                                        $redirect_to = add_query_arg(
     1255                                                array(
     1256                                                        'action'  => 'confirm_admin_email',
     1257                                                        'wp_lang' => $user->locale,
     1258                                                ),
     1259                                                wp_login_url( $redirect_to )
     1260                                        );
    12551261                                }
    12561262                        }
    12571263