X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Finstall-inc.php;h=1ad0dbc5ca8ae3cd2033320d32f505eec7afeebf;hp=6613994455a6a5085b056109ad1657c20656ac37;hb=8b3b0fae36adfa1ef72f436d107d11404b326ec5;hpb=85af9126d4e19a1961c44843693d5403f481484c diff --git a/inc/install-inc.php b/inc/install-inc.php index 6613994455..1ad0dbc5ca 100644 --- a/inc/install-inc.php +++ b/inc/install-inc.php @@ -281,10 +281,10 @@ if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndT $FQFN = secureString(REQUEST_POST('spath')) . "install/" . $dump; if (FILE_READABLE($FQFN)) { // Read the file - $SQLs = READ_FILE($FQFN, true); + $fileContent = READ_FILE($FQFN, true); // And split it up against ;\n ... - $SQLs = merge_array($SQLs, explode(";\n", $sql)); + $SQLs = merge_array($SQLs, explode(";\n", $fileContent)); } else { // Not readable! debug_report_bug(sprintf("SQL dump %s is not readable!", $dump));