diff options
author | nikrou <nikrou@piwigo.org> | 2010-06-22 19:07:54 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-06-22 19:07:54 +0000 |
commit | 32828aa848101678faa4ef81a623cd895788e5f0 (patch) | |
tree | 05dcd7298a7715108ad84e3b8dad77be13f94f68 /themes/default | |
parent | 73b5557703b4594ad436e272b301f68f12b9e547 (diff) |
Fix html bug : input field must be in a block tag
Merge from trunk
git-svn-id: http://piwigo.org/svn/branches/2.1@6571 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default')
-rw-r--r-- | themes/default/template/menubar_identification.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/template/menubar_identification.tpl b/themes/default/template/menubar_identification.tpl index bf932141e..6a6a596a1 100644 --- a/themes/default/template/menubar_identification.tpl +++ b/themes/default/template/menubar_identification.tpl @@ -28,7 +28,6 @@ {if isset($U_LOGIN)} <form method="post" action="{$U_LOGIN}" id="quickconnect"> - <input type="hidden" name="redirect" value="{$smarty.server.REQUEST_URI|@urlencode}"> <fieldset> <legend>{'Quick connect'|@translate}</legend> <div> @@ -49,6 +48,7 @@ {/if} <div> + <input type="hidden" name="redirect" value="{$smarty.server.REQUEST_URI|@urlencode}"> <input class="submit" type="submit" name="login" value="{'Submit'|@translate}"> <ul class="actions"> <li><a href="{$U_LOST_PASSWORD}" title="{'Forgot your password?'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/lost_password.png" class="button" alt="{'Forgot your password?'|@translate}"></a></li> |