From bda849afeb9e4a41d3b643f166e793e36d80c8a9 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Sun, 22 Apr 2012 22:43:06 +1200 Subject: [PATCH] BUGFIX Check for SimpleXML support in PHP at the installation step --- dev/install/install.php5 | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/install/install.php5 b/dev/install/install.php5 index faf1faadf..d59857bd8 100644 --- a/dev/install/install.php5 +++ b/dev/install/install.php5 @@ -438,6 +438,7 @@ class InstallRequirements { // Check for XML support $this->requireFunction('xml_set_object', array("PHP Configuration", "XML support", "XML support not included in PHP.")); $this->requireClass('DOMDocument', array("PHP Configuration", "DOM/XML support", "DOM/XML support not included in PHP.")); + $this->requireFunction('simplexml_load_file', array('PHP Configuration', 'SimpleXML support', 'SimpleXML support not included in PHP.')); // Check for token_get_all $this->requireFunction('token_get_all', array("PHP Configuration", "Tokenizer support", "Tokenizer support not included in PHP."));