From 0d2baed222ec9556798c51280e0a797b43ca8c2a Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 20 Mar 2011 11:39:44 +0000 Subject: [PATCH] correct wfDebug() calls added in r79272 & r79368 --- includes/db/CloneDatabase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/db/CloneDatabase.php b/includes/db/CloneDatabase.php index 5410d1412d..b3015f69b0 100644 --- a/includes/db/CloneDatabase.php +++ b/includes/db/CloneDatabase.php @@ -99,12 +99,12 @@ class CloneDatabase { if( $this->dropCurrentTables && !in_array( $this->db->getType(), array( 'postgres' ) ) ) { $this->db->dropTable( $tbl, __METHOD__ ); - wfDebug( "Dropping {$this->newTablePrefix}{$oldTableName}\n", __METHOD__ ); + wfDebug( __METHOD__." dropping {$this->newTablePrefix}{$oldTableName}\n", true); //Dropping the oldTable because the prefix was changed } # Create new table - wfDebug( "Duplicating $oldTableName to $newTableName\n", __METHOD__ ); + wfDebug( __METHOD__." duplicating $oldTableName to $newTableName\n", true ); $this->db->duplicateTableStructure( $oldTableName, $newTableName, $this->useTemporaryTables ); } -- 2.20.1