From bb011e9f33d23bce4b470a7ea4474ff4cbd42b29 Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Sun, 28 Jul 2024 08:35:46 -0300 Subject: [PATCH] Update --- install/mysqlRestore.php | 1 + 1 file changed, 1 insertion(+) diff --git a/install/mysqlRestore.php b/install/mysqlRestore.php index c60204df20e8..ccf85a40954b 100644 --- a/install/mysqlRestore.php +++ b/install/mysqlRestore.php @@ -92,6 +92,7 @@ function executeFile($filename) { // Executar comandos de criação de tabela com DROP TABLE IF EXISTS foreach ($createTableCommands as $command) { + echo $command.PHP_EOL; if (!$global['mysqli']->query($command)) { echo ('sqlDAL::executeFile ' . $filename . ' Error performing query \'' . $command . '\': ' . $global['mysqli']->error . '

'); }