mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00: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:
parent
e141178869
commit
97519a009a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue