From: Chad Horohoe Date: Mon, 30 May 2011 02:06:12 +0000 (+0000) Subject: $newTablePrefix must be passed. All callers are ok X-Git-Tag: 1.31.0-rc.0~29842 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=ba9d7db94df0e10bdefe0521cdd07fd60418f06f;p=lhc%2Fweb%2Fwiklou.git $newTablePrefix must be passed. All callers are ok --- diff --git a/includes/db/CloneDatabase.php b/includes/db/CloneDatabase.php index 1d5133be8a..3357268dcf 100644 --- a/includes/db/CloneDatabase.php +++ b/includes/db/CloneDatabase.php @@ -65,7 +65,7 @@ class CloneDatabase { * @param $dropCurrentTables bool */ public function __construct( DatabaseBase $db, array $tablesToClone, - $newTablePrefix = 'parsertest', $oldTablePrefix = '', $dropCurrentTables = true ) + $newTablePrefix, $oldTablePrefix = '', $dropCurrentTables = true ) { $this->db = $db; $this->tablesToClone = $tablesToClone;