Add a test for the presence of libxml (not really needed in most cases).

This commit is contained in:
Sébastien Lucas 2013-04-08 17:29:31 +02:00
parent cd03b49954
commit 868a1b1d47

View file

@ -74,6 +74,18 @@
?>
</div>
</div>
<div class="entry">
<div class="entryTitle">Check if libxml is properly installed and loaded</div>
<div class="entryContent">
<?php
if (extension_loaded('libxml')) {
echo "OK";
} else {
echo "Please make sure libxml is enabled";
}
?>
</div>
</div>
<?php
$i = 0;
foreach (Base::getDbList () as $name => $database) {