diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-03-02 22:08:01 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-03-02 22:08:01 -0500 |
commit | e8def259ef26477e1f7ae2b338eac34142572458 (patch) | |
tree | d3560785e3c1d32e9bba3f2329fb3109ead85b6e | |
parent | c177ba7a4e5a94f48da18c9a119f76f11f39cde6 (diff) | |
parent | afae883619eb7d193b413b5599078a6f47ead408 (diff) | |
download | forums-e8def259ef26477e1f7ae2b338eac34142572458.tar forums-e8def259ef26477e1f7ae2b338eac34142572458.tar.gz forums-e8def259ef26477e1f7ae2b338eac34142572458.tar.bz2 forums-e8def259ef26477e1f7ae2b338eac34142572458.tar.xz forums-e8def259ef26477e1f7ae2b338eac34142572458.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/9911] Correctly open "Minimum posts" on editing a rank in IE.
-rw-r--r-- | phpBB/adm/style/acp_ranks.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_ranks.html b/phpBB/adm/style/acp_ranks.html index 9306e30269..2ad8b3e8aa 100644 --- a/phpBB/adm/style/acp_ranks.html +++ b/phpBB/adm/style/acp_ranks.html @@ -35,8 +35,8 @@ </dl> <dl> <dt><label for="special_rank">{L_RANK_SPECIAL}:</label></dt> - <dd><label><input onchange="dE('posts', -1)" type="radio" class="radio" name="special_rank" value="1" id="special_rank"<!-- IF S_SPECIAL_RANK --> checked="checked"<!-- ENDIF --> />{L_YES}</label> - <label><input onchange="dE('posts', 1)" type="radio" class="radio" name="special_rank" value="0"<!-- IF not S_SPECIAL_RANK --> checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> + <dd><label><input onclick="dE('posts', -1)" type="radio" class="radio" name="special_rank" value="1" id="special_rank"<!-- IF S_SPECIAL_RANK --> checked="checked"<!-- ENDIF --> />{L_YES}</label> + <label><input onclick="dE('posts', 1)" type="radio" class="radio" name="special_rank" value="0"<!-- IF not S_SPECIAL_RANK --> checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> </dl> <!-- IF S_SPECIAL_RANK --><div id="posts" style="display: none;"><!-- ELSE --><div id="posts"><!-- ENDIF --> <dl> |