Fix layout of missing-extensions.php

This commit is contained in:
ruan 2020-10-10 08:38:56 +02:00
parent bdfe7afdcd
commit 920bc4621b

View File

@ -15,11 +15,11 @@
The following PHP extensions are required by litebans-php but were not found: The following PHP extensions are required by litebans-php but were not found:
<br> <br>
<?php if (!extension_loaded("pdo_mysql")) { <?php if (!extension_loaded("pdo_mysql")) {
echo "- <a class=\"text-danger\">pdo_mysql</a>"; echo "- <a class=\"text-danger\">pdo_mysql</a><br>";
} }
$phpini = php_ini_loaded_file(); $phpini = php_ini_loaded_file();
echo "<br>These extensions can be enabled in php.ini.<br><br>"; echo "These extensions can be enabled in php.ini.<br><br>";
echo "php.ini location: <a class=\"text-info\">" . $phpini . "</a><br>"; echo "php.ini location: <a class=\"text-info\">" . $phpini . "</a><br>";
?> ?>
</div> </div>