|
From: Paul S. O. <ps...@us...> - 2002-02-16 20:34:27
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv19558/admin
Modified Files:
admin_styles.php
Log Message:
Fixed error preventing drop down displaying
Index: admin_styles.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_styles.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** admin_styles.php 13 Feb 2002 21:56:31 -0000 1.21
--- admin_styles.php 16 Feb 2002 20:34:23 -0000 1.22
***************
*** 42,46 ****
$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? TRUE : FALSE;
! if( !$HTTP_POST_VARS['send_file'] )
{
$no_page_header = ( $cancel ) ? TRUE : FALSE;
--- 42,46 ----
$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? TRUE : FALSE;
! if( empty($HTTP_POST_VARS['send_file']) )
{
$no_page_header = ( $cancel ) ? TRUE : FALSE;
***************
*** 799,803 ****
}
}
! $s_template_select = '</select>';
}
else
--- 799,803 ----
}
}
! $s_template_select .= '</select>';
}
else
|