From d3c3ab70f1c37ac878a6090c4253ceb26ea18ee9 Mon Sep 17 00:00:00 2001 From: ruan <2369127-ruany@users.noreply.gitlab.com> Date: Sat, 28 May 2022 18:42:47 +0200 Subject: [PATCH] Fix formatting in missing-extensions error page --- error/missing-extensions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/error/missing-extensions.php b/error/missing-extensions.php index 68ceffc..7152f3a 100644 --- a/error/missing-extensions.php +++ b/error/missing-extensions.php @@ -14,7 +14,7 @@
$ext"; } @@ -24,9 +24,9 @@ echo(implode("
", $problems)); $phpini = php_ini_loaded_file(); - echo "These extensions can be enabled in php.ini.

"; - echo "php.ini location: " . $phpini . "
"; - echo "List of currently loaded extensions:"; + echo "
These extensions can be enabled in php.ini."; + echo "

php.ini location: " . $phpini . ""; + echo "
List of currently loaded extensions:
"; echo(implode(', ', get_loaded_extensions())); } ?>