From 41e0b87c8f57d37f5ace5deb6ddb21517c5c3b73 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Tue, 25 Nov 2008 23:45:02 +0000 Subject: [PATCH] Initialize caller as an array. Fixes a bug introduced in [9886] git-svn-id: https://develop.svn.wordpress.org/trunk@9890 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/wp-db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 9ecbae8711..3f11034ec0 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -958,7 +958,7 @@ class wpdb { return ''; $bt = debug_backtrace(); - $caller = ''; + $caller = array(); $bt = array_reverse( $bt ); foreach ( (array) $bt as $call ) {