summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
Diffstat (limited to 'installer')
-rw-r--r--installer/installer.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/installer/installer.php b/installer/installer.php
index 53a5e3db..9a957b43 100644
--- a/installer/installer.php
+++ b/installer/installer.php
@@ -229,6 +229,10 @@ class installer {
$errors[] = "Gallery requires <a href=\"http://php.net/manual/en/ini.core.php\">short_open_tag</a> to be on. Please enable it in your php.ini.";
}
+ if (!function_exists("ctype_alpha")) {
+ $errors[] = "Gallery requires the <a href=\"http://php.net/manual/en/book.ctype.php\">PHP Ctype</a> extension. Please install it.";
+ }
+
return @$errors;
}