diff options
Diffstat (limited to 'installer')
-rw-r--r-- | installer/web.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/installer/web.php b/installer/web.php index 387a26bb..1b71d085 100644 --- a/installer/web.php +++ b/installer/web.php @@ -88,6 +88,10 @@ function check_environment() { $errors[] = "PHP is missing <a href=\"http://php.net/pcre\">Perl-Compatible Regular Expression</a> support."; } + if (!(function_exists("spl_autoload_register"))) { + $errors[] = "PHP is missing <a href=\"http://php.net/spl\">Standard PHP Library (SPL)</a> support"; + } + if (!(class_exists("ReflectionClass"))) { $errors[] = "PHP is missing <a href=\"http://php.net/reflection\">reflection</a> support"; } |