From 4ebded01b9f0c457f3b28fe8e82080a7f7ec5137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Tue, 8 May 2018 14:11:21 +0200 Subject: [PATCH] [ticket/15311] Improve code comments PHPBB3-15311 --- phpBB/includes/acp/acp_database.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/acp/acp_database.php b/phpBB/includes/acp/acp_database.php index d345d4075e..5c2e2908eb 100644 --- a/phpBB/includes/acp/acp_database.php +++ b/phpBB/includes/acp/acp_database.php @@ -113,11 +113,13 @@ class acp_database // Get the table structure if ($structure) { + // Add table structure to the backup + // This method also add a "drop the table if exists" after trying to write the table structure $extractor->write_table($table_name); } else { - // We might wanna empty out all that junk :D + // Add command to empty table before write data on it switch ($db->get_sql_layer()) { case 'sqlite3': @@ -139,7 +141,7 @@ class acp_database } } - // Data + // Write schema data if it exists if ($schema_data) { $extractor->write_data($table_name);