You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$message .= '<p>' . __( 'The database server could be connected to (which means username and password is okay) but the query could not be performed.' ) . '<br>';
2306
+
$message .= sprintf( $this->last_error );
2307
+
$message .= '<p>' . sprintf(
2308
+
/* translators: %s: Support forums URL. */
2309
+
__( 'If you are 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>.' ),
2310
+
__( 'https://wordpress.org/support/forums/' )
2311
+
) . "</p>\n";
2312
+
2313
+
wp_die( $message );
2314
+
}
2315
+
2302
2316
if ( $this->last_error ) {
2303
2317
// Clear insert_id on a subsequent failed insert.
2304
2318
if ( $this->insert_id && preg_match( '/^\s*(insert|replace)\s/i', $query ) ) {
0 commit comments