mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
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
This commit is contained in:
@@ -363,9 +363,8 @@ if ($stage == 0)
|
||||
<tr>
|
||||
<td>• <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
|
||||
|
Reference in New Issue
Block a user