diff options
author | nikrou <nikrou@piwigo.org> | 2006-04-21 20:28:46 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2006-04-21 20:28:46 +0000 |
commit | 6b376444b53279a88dceb949abbd471fef524bae (patch) | |
tree | 96665ceffefc0fe24b6ebae8590de648d99883bf | |
parent | 3af17f2e0991383dbb706e93f694bc2d9668ab9f (diff) |
html bug fixed: tags label must be closed
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1239 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | template/yoga/admin/user_list.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/yoga/admin/user_list.tpl b/template/yoga/admin/user_list.tpl index 1483e80f4..427dbc052 100644 --- a/template/yoga/admin/user_list.tpl +++ b/template/yoga/admin/user_list.tpl @@ -303,8 +303,8 @@ <p> {lang:target} - <label><input type="radio" name="target" value="all" /> {lang:all} - <label><input type="radio" name="target" value="selection" checked="checked" /> {lang:selection} + <label><input type="radio" name="target" value="all" /> {lang:all}</label> + <label><input type="radio" name="target" value="selection" checked="checked" /> {lang:selection}</label> </p> <p> |