diff options
author | plegall <plg@piwigo.org> | 2004-12-30 08:36:48 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2004-12-30 08:36:48 +0000 |
commit | 96f24f3ddcdf3122ca1e0e21cac45fa309640d0b (patch) | |
tree | cf5ee12b337a94f36393f092ec3bcb63f407123e /template/default/admin | |
parent | e57538219f07b8d7d8766560dce846fc4a1bff12 (diff) |
- bug fixed on setting commentable property for a single category (bug in
template and in query generation)
- bug on determining whether an element is commentable or not depending on
categories it belongs to
git-svn-id: http://piwigo.org/svn/trunk@668 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/default/admin')
-rw-r--r-- | template/default/admin/cat_modify.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/default/admin/cat_modify.tpl b/template/default/admin/cat_modify.tpl index 04c48112a..bd25ac1b6 100644 --- a/template/default/admin/cat_modify.tpl +++ b/template/default/admin/cat_modify.tpl @@ -61,8 +61,8 @@ <tr> <td><strong>{L_EDIT_COMMENTABLE} :</strong><br /><span class="small">{L_EDIT_COMMENTABLE_INFO}</span></td> <td class="row1"> - <input type="radio" class="radio" name="commentable" value="false" {COMMENTABLE_TRUE} />{L_YES} - <input type="radio" class="radio" name="commentable" value="true" {COMMENTABLE_FALSE} />{L_NO} + <input type="radio" class="radio" name="commentable" value="true" {COMMENTABLE_TRUE} />{L_YES} + <input type="radio" class="radio" name="commentable" value="false" {COMMENTABLE_FALSE} />{L_NO} </td> </tr> <!-- BEGIN upload --> |