From 927a045d7b6c05166188d086fd9ddeb09ce5ddc2 Mon Sep 17 00:00:00 2001 From: Jon goldberg Date: Mon, 4 Sep 2017 12:00:33 -0400 Subject: [PATCH] Check for XML module before install --- install/index.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install/index.php b/install/index.php index 4ac1a51e67..dca5431285 100644 --- a/install/index.php +++ b/install/index.php @@ -705,6 +705,13 @@ class InstallRequirements { ts("MySQL support not included in PHP."), )); + // Check for XML support + $this->requireFunction('simplexml_load_file', array( + ts("PHP Configuration"), + ts("XML support"), + ts("XML support not included in PHP."), + )); + // Check for JSON support $this->requireFunction('json_encode', array( ts("PHP Configuration"), -- 2.25.1