summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
authorChad Kieffer <ckieffer@gmail.com>2009-08-04 23:38:11 -0600
committerChad Kieffer <ckieffer@gmail.com>2009-08-04 23:38:11 -0600
commit58dbee03e5ef44280fff57637c7b51e5d614ba66 (patch)
tree944bc3310efbda6a8a04f42918d31b68595f5ae7 /installer
parent9a55eb4df8346f9a81fbd4a1fb4daa7b807e80e0 (diff)
parentb9a6cd45ba0b32a115dedd8b3fa3962eb82202e1 (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'installer')
-rw-r--r--installer/web.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/installer/web.php b/installer/web.php
index 78784539..f31c0644 100644
--- a/installer/web.php
+++ b/installer/web.php
@@ -104,6 +104,10 @@ function check_environment() {
$errors[] = "PHP is missing the <a href=\"http://php.net/iconv\">iconv extension</a>";
}
+ if (!(extension_loaded("simplexml"))) {
+ $errors[] = "PHP is missing the <a href=\"http://php.net/simplexml\">SimpleXML extension</a>";
+ }
+
if (extension_loaded("mbstring") && (ini_get("mbstring.func_overload") & MB_OVERLOAD_STRING)) {
$errors[] = "The <a href=\"http://php.net/mbstring\">mbstring extension</a> is overloading PHP's native string functions. Please disable it.";
}