|
From: Paul S. O. <ps...@us...> - 2001-12-16 02:45:09
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv20521/admin
Modified Files:
admin_styles.php
Log Message:
Hopefully fixed bug #491971
Index: admin_styles.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_styles.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** admin_styles.php 2001/12/16 02:38:45 1.10
--- admin_styles.php 2001/12/16 02:45:06 1.11
***************
*** 42,53 ****
$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? TRUE : FALSE;
! if( $cancel )
{
! header("Location: " . append_sid("admin_styles.$phpEx"));
}
! if( !$HTTP_POST_VARS['send_file'] )
{
! require('pagestart.inc');
}
--- 42,54 ----
$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? TRUE : FALSE;
! if( !$HTTP_POST_VARS['send_file'] )
{
! $no_page_header = ( $cancel ) ? TRUE : FALSE;
! require('pagestart.inc');
}
! if( $cancel )
{
! header("Location: " . append_sid("admin_styles.$phpEx"));
}
|