diff options
author | Gabriel Vazquez <leviatan21@phpbb.com> | 2009-06-21 14:42:20 +0000 |
---|---|---|
committer | Gabriel Vazquez <leviatan21@phpbb.com> | 2009-06-21 14:42:20 +0000 |
commit | b16626e947328379ea986c10fe1c4840e502aacb (patch) | |
tree | ec0d6f77a0f7384109134cece97f081d08ac0e53 | |
parent | 794e122cfa01539e912786455da59e25d459a56f (diff) | |
download | forums-b16626e947328379ea986c10fe1c4840e502aacb.tar forums-b16626e947328379ea986c10fe1c4840e502aacb.tar.gz forums-b16626e947328379ea986c10fe1c4840e502aacb.tar.bz2 forums-b16626e947328379ea986c10fe1c4840e502aacb.tar.xz forums-b16626e947328379ea986c10fe1c4840e502aacb.zip |
Fixed bug #45975
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9647 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/adm/index.php | 2 | ||||
-rw-r--r-- | phpBB/adm/style/admin.css | 1 | ||||
-rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php index 2c3f9deb6c..778070e2e1 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; } diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 344b5cacf0..173af4f7ab 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -184,6 +184,7 @@ a:active { width: 76%; margin: 0 0 0 3%; min-height: 350px; + overflow-y: auto; } .rtl #main { diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 47171ef4cb..1c489b338f 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -94,6 +94,7 @@ <li>[Fix] Show report button in prosilver for guests who are allowed to report posts. (Bug #45695 - Patch by bantu)</li> <li>[Fix] Correctly show private message history (Bug #46065 - Patch by bantu)</li> <li>[Fix] Various XHTML mistakes in prosilver, subsilver2 and the ACP. (Bugs #25545 - Patch by bantu, #26315, #38555, #45505 - Patch by Raimon, #45785, #45865)</li> + <li>[Fix] Fix some ACP style issues (Bug #45975 - Patch by leviatan21)</li> <li>[Fix] Move post bump information markup to the template. (Bug #34295 - Patch by bantu)</li> <li>[Fix] Show error in the ACP when template folder is not readable. (Bug #45705 - Patch by bantu)</li> <li>[Fix] Adjust viewonline filename regular expression to be less strict. (Bug #46215 - Patch by bantu)</li> |