mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 23:07:39 +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;
|
$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
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user