From 5b876967a7f49a25c299abb8e3d0ab172f80b164 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 24 Oct 2013 23:12:04 -0700 Subject: [PATCH] Fixed use of wrong callback array element bug: 56124 Change-Id: Ia9f058f42616f5c7c5936733747d0c3a8d56dc19 --- includes/db/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 5f175a4f81..42f8482afd 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -3906,7 +3906,7 @@ abstract class DatabaseBase implements IDatabase, DatabaseType { if ( count( $this->mTrxIdleCallbacks ) || count( $this->mTrxPreCommitCallbacks ) ) { $callers = array(); foreach ( $this->mTrxIdleCallbacks as $callbackInfo ) { - $callers[] = $callbackInfo[0]; + $callers[] = $callbackInfo[1]; } $callers = implode( ', ', $callers ); -- 2.20.1