mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
Fixed error preventing drop down displaying
git-svn-id: file:///svn/phpbb/trunk@2171 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -41,7 +41,7 @@ $phpbb_root_dir = "./../";
|
||||
$confirm = ( isset($HTTP_POST_VARS['confirm']) ) ? 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;
|
||||
require('pagestart.inc');
|
||||
@@ -798,7 +798,7 @@ switch( $mode )
|
||||
$s_template_select .= '<option value="' . $file . '">' . $file . "</option>\n";
|
||||
}
|
||||
}
|
||||
$s_template_select = '</select>';
|
||||
$s_template_select .= '</select>';
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user