Fixed error preventing drop down displaying

git-svn-id: file:///svn/phpbb/trunk@2171 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-02-16 20:34:23 +00:00
parent e141178869
commit 97519a009a

View file

@ -41,7 +41,7 @@ $phpbb_root_dir = "./../";
$confirm = ( isset($HTTP_POST_VARS['confirm']) ) ? TRUE : FALSE; $confirm = ( isset($HTTP_POST_VARS['confirm']) ) ? TRUE : FALSE;
$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? TRUE : FALSE; $cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? TRUE : FALSE;
if( !$HTTP_POST_VARS['send_file'] ) if( empty($HTTP_POST_VARS['send_file']) )
{ {
$no_page_header = ( $cancel ) ? TRUE : FALSE; $no_page_header = ( $cancel ) ? TRUE : FALSE;
require('pagestart.inc'); require('pagestart.inc');
@ -798,7 +798,7 @@ switch( $mode )
$s_template_select .= '<option value="' . $file . '">' . $file . "</option>\n"; $s_template_select .= '<option value="' . $file . '">' . $file . "</option>\n";
} }
} }
$s_template_select = '</select>'; $s_template_select .= '</select>';
} }
else else
{ {