Add missing line breaks to wfDebug() calls
[lhc/web/wiklou.git] / includes / db / CloneDatabase.php
index 08e1885..536d721 100644 (file)
@@ -86,12 +86,12 @@ class CloneDatabase {
                                && !in_array( $this->db->getType(), array( 'postgres', 'oracle' ) )
                        ) {
                                $this->db->dropTable( $tbl, __METHOD__ );
-                               wfDebug( __METHOD__ . " dropping {$newTableName}\n", true );
+                               wfDebug( __METHOD__ . " dropping {$newTableName}\n" );
                                //Dropping the oldTable because the prefix was changed
                        }
 
                        # Create new table
-                       wfDebug( __METHOD__ . " duplicating $oldTableName to $newTableName\n", true );
+                       wfDebug( __METHOD__ . " duplicating $oldTableName to $newTableName\n" );
                        $this->db->duplicateTableStructure( $oldTableName, $newTableName, $this->useTemporaryTables );
                }
        }