docs: Updated docs to include installing xml php modules + updated validate (#7349)

This commit is contained in:
Neil Lathwood
2017-09-16 01:29:54 +01:00
committed by Tony Murray
parent 25bb27c39e
commit 529660b8c5
5 changed files with 6 additions and 6 deletions

View File

@@ -98,9 +98,9 @@ if (!file_exists('vendor/autoload.php')) {
}
// Check php modules we use to make sure they are loaded
$extensions = array('mysqli','pcre','curl','session','snmp','mcrypt');
$extensions = array('mysqli','pcre','curl','session','snmp','mcrypt', 'xml');
foreach ($extensions as $extension) {
if (extension_loaded($extension) === false) {
if (extension_loaded($extension) == false) {
$missing_extensions[] = $extension;
}
}