Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Jul 28, 2024
1 parent 84e8d89 commit e0a52be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install/mysqlRestore.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e0a52be

Please sign in to comment.