aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r--phpBB/install/install.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php
index 2ce5e418d7..de019791e6 100644
--- a/phpBB/install/install.php
+++ b/phpBB/install/install.php
@@ -363,9 +363,8 @@ if ($stage == 0)
<tr>
<td>&bull;&nbsp;<b><?php echo $lang['PHP_REGISTER_GLOBALS']; ?>: </b></td>
<td><?php
- if (@ini_get('register_globals') || strtolower(@ini_get('register_globals')) == 'on')
+ if (@ini_get('register_globals') == '1' || strtolower(@ini_get('register_globals')) == 'on')
{
- $passed['db'] = false;
echo '<b style="color:red">' . $lang['NO'] . '</b>';
}
else