diff options
author | nikrou <nikrou@piwigo.org> | 2009-03-19 19:51:54 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2009-03-19 19:51:54 +0000 |
commit | 2b9d21eb78fcd6a2d3e422021bad3c2141a17b0b (patch) | |
tree | cf5911c0ad4e536c4c896cf4ff1b331610cb593f /admin/template/goto/element_set_unit.tpl | |
parent | 4f425390b84331244e836a811cf6d9d27f891e8a (diff) |
fix several html bugs
we must find a way to fix the problem of empty select
git-svn-id: http://piwigo.org/svn/trunk@3215 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/element_set_unit.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/template/goto/element_set_unit.tpl b/admin/template/goto/element_set_unit.tpl index 0520e4e59..391bdb94f 100644 --- a/admin/template/goto/element_set_unit.tpl +++ b/admin/template/goto/element_set_unit.tpl @@ -27,7 +27,7 @@ {if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if} {if !empty($elements) } -<input type="hidden" name="element_ids" value="{$ELEMENT_IDS}"> +<div><input type="hidden" name="element_ids" value="{$ELEMENT_IDS}"></div> {foreach from=$elements item=element} <fieldset class="elementEdit"> <legend>{$element.LEGEND}</legend> @@ -81,7 +81,7 @@ <tr> <td><strong>{'Description'|@translate}</strong></td> - <td><textarea name="description-{$element.ID}" id="description-{$element.ID}" class="description">{$element.DESCRIPTION}</textarea></td> + <td><textarea cols="50" rows="5" name="description-{$element.ID}" id="description-{$element.ID}" class="description">{$element.DESCRIPTION}</textarea></td> </tr> </table> |