summaryrefslogtreecommitdiff
path: root/installer/web.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-08-05 06:51:27 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-08-05 06:51:27 -0700
commit2f63a5379f668188d4e1a46231246a25445e40fa (patch)
tree40f18712ebff843b2623639cc36321df58ce06e0 /installer/web.php
parenta25f08d433d504a53763feb358a1aa7f5f798de6 (diff)
parentb9a6cd45ba0b32a115dedd8b3fa3962eb82202e1 (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'installer/web.php')
-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.";
}