Make WordPress Core

Ticket #46789: 46789.patch

File 46789.patch, 2.2 KB (added by Clorith, 5 years ago)
  • src/wp-admin/includes/class-wp-site-health.php

     
    182182                        'label'       => '',
    183183                        'status'      => '',
    184184                        'badge'       => array(
    185                                 'label' => __( 'Security' ),
     185                                'label' => __( 'Performance' ),
    186186                                'color' => 'red',
    187187                        ),
    188188                        'description' => '',
     
    242242                                                );
    243243                                        } else {
    244244                                                // This is a minor version, sometimes considered more critical.
    245                                                 $result['status']      = 'critical';
    246                                                 $result['description'] = sprintf(
     245                                                $result['status']         = 'critical';
     246                                                $result['badge']['label'] = __( 'Security' );
     247                                                $result['description']    = sprintf(
    247248                                                        '<p>%s</p>',
    248249                                                        __( 'A new minor update is available for your site. Because minor updates often address security, it&#8217;s important to install them.' )
    249250                                                );
     
    621622                        ),
    622623                        'status'      => 'good',
    623624                        'badge'       => array(
    624                                 'label' => __( 'Security' ),
     625                                'label' => __( 'Performance' ),
    625626                                'color' => 'red',
    626627                        ),
    627628                        'description' => sprintf(
     
    660661                }
    661662
    662663                // Anything no longer secure must be updated.
    663                 $result['label']  = __( 'Your PHP version requires an update' );
    664                 $result['status'] = 'critical';
     664                $result['label']          = __( 'Your PHP version requires an update' );
     665                $result['status']         = 'critical';
     666                $result['badge']['label'] = __( 'Security' );
    665667
    666668                return $result;
    667669        }
     
    905907                        'label'       => __( 'SQL server is up to date' ),
    906908                        'status'      => 'good',
    907909                        'badge'       => array(
    908                                 'label' => __( 'Security' ),
     910                                'label' => __( 'Performance' ),
    909911                                'color' => 'red',
    910912                        ),
    911913                        'description' => sprintf(
     
    937939                if ( ! $this->mysql_min_version_check ) {
    938940                        $result['status'] = 'critical';
    939941
    940                         $result['label'] = __( 'Severely outdated SQL server' );
     942                        $result['label']          = __( 'Severely outdated SQL server' );
     943                        $result['badge']['label'] = __( 'Security' );
    941944
    942945                        $result['description'] .= sprintf(
    943946                                '<p>%s</p>',