Make WordPress Core

Ticket #60670: 60670.2.diff

File 60670.2.diff, 1.2 KB (added by Presskopp, 9 months ago)
  • wp-admin/includes/class-wp-site-health.php

     
    12381238                        $result['description'] .= sprintf(
    12391239                                '<p>%s</p>',
    12401240                                sprintf(
    1241                                         /* translators: 1: The database engine in use (MySQL or MariaDB). 2: Database server recommended version number. */
    1242                                         __( 'For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.' ),
    1243                                         ( $this->is_mariadb ? 'MariaDB' : 'MySQL' ),
     1241                                        /* translators: 1: The version number of the database engine in use. 2: The database engine in use (MySQL or MariaDB). 3: Database server recommended version number. */
     1242                                        __( 'Your version is %1$s. For optimal performance and security reasons, you should consider running %2$s version %3$s or higher.  Contact your web hosting company to correct this.' ),
     1243                                        //$wpdb->get_var( 'SELECT VERSION()' ),
     1244                                        $this->mysql_server_version,
     1245                                        $this->is_mariadb ? 'MariaDB' : 'MySQL',
    12441246                                        $this->mysql_recommended_version
    12451247                                )
    12461248                        );