diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-02-16 20:34:23 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-02-16 20:34:23 +0000 |
commit | 97519a009a02c5b3edaa9c417f30f50d7c7df3d7 (patch) | |
tree | f5acb37e8ae150a33c8c5e0ba3c909812a25ee91 /phpBB | |
parent | e141178869272d31f28738023ee3ea3c6ca2bd06 (diff) | |
download | forums-97519a009a02c5b3edaa9c417f30f50d7c7df3d7.tar forums-97519a009a02c5b3edaa9c417f30f50d7c7df3d7.tar.gz forums-97519a009a02c5b3edaa9c417f30f50d7c7df3d7.tar.bz2 forums-97519a009a02c5b3edaa9c417f30f50d7c7df3d7.tar.xz forums-97519a009a02c5b3edaa9c417f30f50d7c7df3d7.zip |
Fixed error preventing drop down displaying
git-svn-id: file:///svn/phpbb/trunk@2171 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-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 { |