diff options
author | nikrou <nikrou@piwigo.org> | 2008-12-21 13:20:14 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2008-12-21 13:20:14 +0000 |
commit | 2ea8ea880df9905e2bed4215f963c0ee3b6b1201 (patch) | |
tree | 38dc583ce33b012a36107418222d7d38144ec72a /admin | |
parent | 55ee081efc50361443e054d32ca466fa1e0f8702 (diff) |
bug fix: non valid html id needed for label
git-svn-id: http://piwigo.org/svn/trunk@3008 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r-- | admin/template/goto/profile_content.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/template/goto/profile_content.tpl b/admin/template/goto/profile_content.tpl index 9cabf0a51..dc67d5032 100644 --- a/admin/template/goto/profile_content.tpl +++ b/admin/template/goto/profile_content.tpl @@ -60,13 +60,13 @@ <span class="property"> <label for="template">{'theme'|@translate}</label> </span> - {html_options name=template options=$template_options selected=$template_selection} + {html_options id=template name=template options=$template_options selected=$template_selection} </li> <li> <span class="property"> <label for="language">{'language'|@translate}</label> </span> - {html_options name=language options=$language_options selected=$language_selection} + {html_options id=language name=language options=$language_options selected=$language_selection} </li> <li> <span class="property"> |