diff options
author | mamouneyya <mamoun.diraneyya@gmail.com> | 2010-12-09 18:31:01 +0200 |
---|---|---|
committer | mamouneyya <mamoun.diraneyya@gmail.com> | 2010-12-09 18:31:01 +0200 |
commit | 3e2610ea83c60805d5e727df6509da6c49fd6c7b (patch) | |
tree | 28638f7a1cd2e298587f4b3960caf409f7d2d2fa /installer/installer.php | |
parent | 6aabab4b715ff8ac00cc667e9d0a40c9868410d8 (diff) | |
parent | c3ef8921260db8e39b6d2a7b4708e3d19f35f8b5 (diff) |
Merge remote branch 'gallery3/master'
Diffstat (limited to 'installer/installer.php')
-rw-r--r-- | installer/installer.php | 4 |
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; } |