From f636dd473a4d719b41be6645a2ab492ed707af60 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Tue, 28 Dec 2010 22:20:01 +0000 Subject: [PATCH] Fix hardcoded debugging from r79093 --- includes/db/CloneDatabase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/CloneDatabase.php b/includes/db/CloneDatabase.php index 11c95f9f6a..cf3a177b3d 100644 --- a/includes/db/CloneDatabase.php +++ b/includes/db/CloneDatabase.php @@ -78,7 +78,7 @@ class CloneDatabase { * @param $u Bool Use temporary tables when cloning the structure */ public function useTemporaryTables( $u = true ) { - $this->useTemporaryTables = false; + $this->useTemporaryTables = $u; } /** -- 2.20.1