diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-10-19 14:39:14 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-10-19 14:39:14 +0200 |
commit | a6fd55db354c91dcd0220ab66ebf1036f5f05d85 (patch) | |
tree | 2d8b997eae6b674d0c0f195e522ae3418bbf78fe /phpBB/styles/subsilver2/template | |
parent | dfd5ec6835f7cd4dd9a248c8a55da35c2032d98c (diff) | |
parent | 5b8a721b73122ee25b332ac06ce723c8756acead (diff) | |
download | forums-a6fd55db354c91dcd0220ab66ebf1036f5f05d85.tar forums-a6fd55db354c91dcd0220ab66ebf1036f5f05d85.tar.gz forums-a6fd55db354c91dcd0220ab66ebf1036f5f05d85.tar.bz2 forums-a6fd55db354c91dcd0220ab66ebf1036f5f05d85.tar.xz forums-a6fd55db354c91dcd0220ab66ebf1036f5f05d85.zip |
Merge pull request #3647 from marc1706/ticket/13799
[ticket/13799] Do not rawurlencode category in gallery avatar
* marc1706/ticket/13799:
[ticket/13799] Split lines in HTML files for better readability
[ticket/13799] Add missing space before checked attribute
[ticket/13799] Correctly urlencode category and show selected avatar
[ticket/13799] Do not rawurlencode category in gallery avatar
Diffstat (limited to 'phpBB/styles/subsilver2/template')
-rw-r--r-- | phpBB/styles/subsilver2/template/ucp_avatar_options_local.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/ucp_avatar_options_local.html b/phpBB/styles/subsilver2/template/ucp_avatar_options_local.html index 919cf49e44..921126ba22 100644 --- a/phpBB/styles/subsilver2/template/ucp_avatar_options_local.html +++ b/phpBB/styles/subsilver2/template/ucp_avatar_options_local.html @@ -19,7 +19,11 @@ </tr> <tr> <!-- BEGIN avatar_local_option --> - <td class="row2" align="center"><input type="radio" class="radio" name="avatar_local_file" id="av-{avatar_local_row.S_ROW_COUNT}-{avatar_local_row.avatar_local_col.S_ROW_COUNT}" value="{avatar_local_row.avatar_local_option.S_OPTIONS_AVATAR}" /></td> + <td class="row2" align="center"><input type="radio" class="radio" name="avatar_local_file" + id="av-{avatar_local_row.S_ROW_COUNT}-{avatar_local_row.avatar_local_col.S_ROW_COUNT}" + value="{avatar_local_row.avatar_local_option.S_OPTIONS_AVATAR}" + <!-- IF avatar_local_row.avatar_local_option.CHECKED --> checked="checked"<!-- ENDIF --> /> + </td> <!-- END avatar_local_option --> </tr> <!-- BEGINELSE --> |