Fixed "headers already sent" error in installer
This commit is contained in:
parent
ecdc0e6540
commit
8e606ad331
|
@ -1,5 +1,6 @@
|
||||||
.idea
|
.idea
|
||||||
PROTOTYPING
|
PROTOTYPING
|
||||||
|
tools
|
||||||
src/installer/cache
|
src/installer/cache
|
||||||
src/private/cache
|
src/private/cache
|
||||||
src/private/vendor
|
src/private/vendor
|
||||||
|
|
|
@ -22,6 +22,10 @@ error_reporting(E_ALL);
|
||||||
set_time_limit(0);
|
set_time_limit(0);
|
||||||
|
|
||||||
$stepNumber = empty($_GET["step"]) || !file_exists(__DIR__ . "/pages/" . (int)$_GET["step"] . ".php") ? 1 : (int) $_GET["step"];
|
$stepNumber = empty($_GET["step"]) || !file_exists(__DIR__ . "/pages/" . (int)$_GET["step"] . ".php") ? 1 : (int) $_GET["step"];
|
||||||
|
|
||||||
|
ob_start();
|
||||||
|
require __DIR__ . "/pages/$stepNumber.php";
|
||||||
|
$pageContent = ob_get_clean();
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
@ -80,7 +84,7 @@ $stepNumber = empty($_GET["step"]) || !file_exists(__DIR__ . "/pages/" . (int)$_
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php require_once __DIR__ . "/pages/$stepNumber.php" ?>
|
<?= $pageContent ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in New Issue