diff options
-rw-r--r-- | phpBB/admin/admin_styles.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_styles.php b/phpBB/admin/admin_styles.php index 19c8f7aee6..9d9e98734d 100644 --- a/phpBB/admin/admin_styles.php +++ b/phpBB/admin/admin_styles.php @@ -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 { |