Ticket #35728: 35728.patch
| File 35728.patch, 2.4 KB (added by , 10 years ago) |
|---|
-
wp-includes/wp-db.php
1080 1080 $message .= "</ul>\n"; 1081 1081 1082 1082 $message .= '<p>' . sprintf( 1083 /* translators: %s: support forums URL*/1084 __( 'If you don’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’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>' 1086 1086 ) . "</p>\n"; 1087 1087 1088 1088 $this->bail( $message, 'db_select_fail' ); … … 1538 1538 $message .= "</ul>\n"; 1539 1539 1540 1540 $message .= '<p>' . sprintf( 1541 /* translators: %s: support forums URL*/1542 __( 'If you’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’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>' 1544 1544 ) . "</p>\n"; 1545 1545 1546 1546 $this->bail( $message, 'db_connect_fail' ); … … 1642 1642 $message .= "</ul>\n"; 1643 1643 1644 1644 $message .= '<p>' . sprintf( 1645 /* translators: %s: support forums URL*/1646 __( 'If you’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’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>' 1648 1648 ) . "</p>\n"; 1649 1649 1650 1650 // We weren't able to reconnect, so we better bail.