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/configuration.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 'admin/template/goto/configuration.tpl')
-rw-r--r-- | admin/template/goto/configuration.tpl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/admin/template/goto/configuration.tpl b/admin/template/goto/configuration.tpl index 4823c9953..7f8072dfd 100644 --- a/admin/template/goto/configuration.tpl +++ b/admin/template/goto/configuration.tpl @@ -6,7 +6,9 @@ <h2>{'title_configuration'|@translate} {$TABSHEET_TITLE}</h2> </div> +{if !isset($default)} <form method="post" action="{$F_ACTION}" class="properties"> +{/if} {if isset($main)} <fieldset id="mainConf"> @@ -85,6 +87,7 @@ {if isset($history)} <fieldset id="historyConf"> + <legend></legend> <ul> <li> <label><span class="property">{'conf_history_guest'|@translate}</span><input type="checkbox" name="history_guest" {if ($history.history_guest)}checked="checked"{/if}></label> @@ -104,6 +107,7 @@ {if isset($comments)} <fieldset id="commentsConf"> + <legend></legend> <ul> <li> <label> @@ -146,6 +150,7 @@ {if isset($upload)} <fieldset id="uploadConf"> + <legend></legend> <ul> <li> <label><span class="property">{'Show upload link every time'|@translate}</span> @@ -154,6 +159,7 @@ <li> <label><span class="property">{'User access level to upload'|@translate}</span> {html_options name="upload_user_access" options=$upload.upload_user_access_options selected=$upload.upload_user_access_options_selected} + </label> </li> <li> <label> @@ -174,5 +180,5 @@ <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}> <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}"> </p> -{/if} </form> +{/if} |