aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/index.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2009-09-30 15:07:40 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2009-09-30 15:07:40 +0000
commit485576395cf99297ff54046079b409eb9c59a1d1 (patch)
tree307d6c06b4701ee23ac2a6f481014847ee38f84e /phpBB/adm/index.php
parent3850de87fc430561612ca27d61855aee8ef43d1e (diff)
downloadforums-485576395cf99297ff54046079b409eb9c59a1d1.tar
forums-485576395cf99297ff54046079b409eb9c59a1d1.tar.gz
forums-485576395cf99297ff54046079b409eb9c59a1d1.tar.bz2
forums-485576395cf99297ff54046079b409eb9c59a1d1.tar.xz
forums-485576395cf99297ff54046079b409eb9c59a1d1.zip
Revert revisions r10176 and r9647 - Bug #45975, #51505
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10200 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/index.php')
-rw-r--r--phpBB/adm/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index b6b251d2fc..26f934f6bf 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -246,7 +246,7 @@ function h_radio($name, &$input_ary, $input_default = false, $id = false, $key =
foreach ($input_ary as $value => $title)
{
$selected = ($input_default !== false && $value == $input_default) ? ' checked="checked"' : '';
- $html .= '<label><input type="radio" name="' . $name . '"' . (($id && !$id_assigned) ? ' id="' . $id . '"' : '') . ' value="' . $value . '"' . $selected . (($key) ? ' accesskey="' . $key . '"' : '') . ' class="radio" /> ' . $user->lang[$title] . '</label> ';
+ $html .= '<label><input type="radio" name="' . $name . '"' . (($id && !$id_assigned) ? ' id="' . $id . '"' : '') . ' value="' . $value . '"' . $selected . (($key) ? ' accesskey="' . $key . '"' : '') . ' class="radio" /> ' . $user->lang[$title] . '</label>';
$id_assigned = true;
}