1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-20 03:06:11 +02:00

Updates, removed included header/footer (merged into functions within pagestart)

git-svn-id: file:///svn/phpbb/trunk@2817 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2002-08-04 13:58:52 +00:00
parent ca71651767
commit 09b7d6b2b9
6 changed files with 144 additions and 193 deletions

View File

@@ -53,7 +53,7 @@ if ( !$acl->get_acl_admin('user') )
//
if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
{
$mode = ($HTTP_GET_VARS['mode']) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode'];
$mode = ( isset($HTTP_POST_VARS['mode']) ) ? $HTTP_POST_VARS['mode'] : $HTTP_GET_VARS['mode'];
}
else
{