diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index 5a7d1bf066..d7260afe55 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -221,7 +221,7 @@ function h_radio($name, &$input_ary, $input_default = false, $id = false, $key =
{
$selected = ($input_default !== false && $value == $input_default) ? ' checked="checked"' : '';
$html .= ($html) ? ' ' : '';
- $html .= ' ' . $user->lang[$title];
+ $html .= ' ' . $user->lang[$title];
$id_assigned = true;
}
@@ -266,8 +266,8 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
$tpl_type_cond = explode('_', $tpl_type[1]);
$type_no = ($tpl_type_cond[0] == 'disabled' || $tpl_type_cond[0] == 'enabled') ? false : true;
- $tpl_no = ' ' . (($type_no) ? $user->lang['NO'] : $user->lang['DISABLED']);
- $tpl_yes = ' ' . (($type_no) ? $user->lang['YES'] : $user->lang['ENABLED']);
+ $tpl_no = ' ' . (($type_no) ? $user->lang['NO'] : $user->lang['DISABLED']);
+ $tpl_yes = ' ' . (($type_no) ? $user->lang['YES'] : $user->lang['ENABLED']);
$tpl = ($tpl_type_cond[0] == 'yes' || $tpl_type_cond[0] == 'enabled') ? $tpl_yes . ' ' . $tpl_no : $tpl_no . ' ' . $tpl_yes;
break;