From 0faaacc7c8706a2a3ea7df50505d6efd9a2158a1 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 3 Apr 2014 04:05:31 +0000 Subject: [PATCH] Database: Add $allow_bail argument to wpdb::check_connection() to match the connect method. props DrProtocols, pento. fixes #27240. git-svn-id: https://develop.svn.wordpress.org/trunk@27925 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/wp-db.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/wp-db.php b/src/wp-includes/wp-db.php index 170c29565e..8423731e8c 100644 --- a/src/wp-includes/wp-db.php +++ b/src/wp-includes/wp-db.php @@ -1386,9 +1386,13 @@ class wpdb { * * @since 3.9.0 * + * @param bool $allow_bail Optional. Allows the function to bail, default true. If this is set + * to false, you will need to handle the lack of database connection + * manually. + * * @return bool True if the connection is up. */ - function check_connection() { + function check_connection( $allow_bail = true ) { if ( $this->use_mysqli ) { if ( @mysqli_ping( $this->dbh ) ) { return true; @@ -1431,6 +1435,10 @@ class wpdb { return false; } + if ( ! $allow_bail ) { + return false; + } + // We weren't able to reconnect, so we better bail. $this->bail( sprintf( ( "

Error reconnecting to the database