Make WordPress Core

Ticket #35728: 35728.patch

File 35728.patch, 2.4 KB (added by ramiy, 10 years ago)
  • wp-includes/wp-db.php

     
    10801080                                $message .= "</ul>\n";
    10811081
    10821082                                $message .= '<p>' . sprintf(
    1083                                         /* translators: %s: support forums URL */
    1084                                         __( 'If you don&#8217;t know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="%s">WordPress Support Forums</a>.' ),
    1085                                         __( 'https://wordpress.org/support/' )
     1083                                        /* translators: %s: WordPress Support Forums */
     1084                                        __( 'If you don&#8217;t know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the %s.' ),
     1085                                        '<a href="' . __( 'https://wordpress.org/support/' ) . '">' . __( 'WordPress Support Forums' ) . '</a>'
    10861086                                ) . "</p>\n";
    10871087
    10881088                                $this->bail( $message, 'db_select_fail' );
     
    15381538                        $message .= "</ul>\n";
    15391539
    15401540                        $message .= '<p>' . sprintf(
    1541                                 /* translators: %s: support forums URL */
    1542                                 __( 'If you&#8217;re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),
    1543                                 __( 'https://wordpress.org/support/' )
     1541                                /* translators: %s: WordPress Support Forums */
     1542                                __( 'If you&#8217;re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the %s.' ),
     1543                                '<a href="' . __( 'https://wordpress.org/support/' ) . '">' . __( 'WordPress Support Forums' ) . '</a>'
    15441544                        ) . "</p>\n";
    15451545
    15461546                        $this->bail( $message, 'db_connect_fail' );
     
    16421642                $message .= "</ul>\n";
    16431643
    16441644                $message .= '<p>' . sprintf(
    1645                         /* translators: %s: support forums URL */
    1646                         __( 'If you&#8217;re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support Forums</a>.' ),
    1647                         __( 'https://wordpress.org/support/' )
     1645                        /* translators: %s: WordPress Support Forums */
     1646                        __( 'If you&#8217;re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the %s.' ),
     1647                        '<a href="' . __( 'https://wordpress.org/support/' ) . '">' . __( 'WordPress Support Forums' ) . '</a>'
    16481648                ) . "</p>\n";
    16491649
    16501650                // We weren't able to reconnect, so we better bail.