Add a test for the presence of libxml (not really needed in most cases).
This commit is contained in:
parent
cd03b49954
commit
868a1b1d47
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue