From e0a52bea94e6ea35bb4e5cc8da5a1672db3b3bde Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Sun, 28 Jul 2024 08:27:26 -0300 Subject: [PATCH] Update --- install/mysqlRestore.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/mysqlRestore.php b/install/mysqlRestore.php index 9af572ea9325..50b21fb69318 100644 --- a/install/mysqlRestore.php +++ b/install/mysqlRestore.php @@ -69,7 +69,7 @@ function executeFile($filename) { continue; // Add this line to the current segment - $templine += $line; + $templine .= $line; // Usar .= para concatenar strings // If it has a semicolon at the end, it's the end of the query if (substr(trim($line), -1, 1) == ';') { // Perform the query @@ -106,7 +106,7 @@ function executeFile($filename) { continue; // Add this line to the current segment - $templine += $line; + $templine .= $line; // Usar .= para concatenar strings // If it has a semicolon at the end, it's the end of the query if (substr(trim($line), -1, 1) == ';') { // Perform the query