aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-03-06 23:45:21 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-03-06 23:45:21 +0000
commit91720e826f14130485ccc306a93e5dd0fbf2946f (patch)
treeb5238c4c1f0f0b7a31f790d7035c76f90d27a214 /phpBB/install/install.php
parent21f3fbc4be201a4fa277e65d30e694f0f75cb6ff (diff)
downloadforums-91720e826f14130485ccc306a93e5dd0fbf2946f.tar
forums-91720e826f14130485ccc306a93e5dd0fbf2946f.tar.gz
forums-91720e826f14130485ccc306a93e5dd0fbf2946f.tar.bz2
forums-91720e826f14130485ccc306a93e5dd0fbf2946f.tar.xz
forums-91720e826f14130485ccc306a93e5dd0fbf2946f.zip
Weee! My turn to bug things up :D
- A moved topic has _two_ forum_ids, we must update the tracking info on the "fake" forum and the "real" forum. - Welcome back to register_globals! :P git-svn-id: file:///svn/phpbb/trunk@5608 89ea8834-ac86-4346-8a33-228a782c2dd0
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