diff options
Diffstat (limited to 'install/ElggInstaller.php')
-rw-r--r-- | install/ElggInstaller.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/install/ElggInstaller.php b/install/ElggInstaller.php index b1b9f9dc6..66d1038ab 100644 --- a/install/ElggInstaller.php +++ b/install/ElggInstaller.php @@ -955,6 +955,13 @@ class ElggInstaller { 'message' => $msg, ); } + + if (ini_get('register_globals')) { + $phpReport[] = array( + 'severity' => 'failure', + 'message' => elgg_echo("install:check:php:register_globals") + ); + } } /** |