diff options
author | nikrou <nikrou@piwigo.org> | 2010-06-22 19:06:05 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-06-22 19:06:05 +0000 |
commit | 2bad9871e2c66604156eafab8a294a40ccda6448 (patch) | |
tree | f633ef6ffc746c9a999bab30362019f1e276375e /themes | |
parent | 2ab566c95677aa99df0585001e646aac7d63d9ec (diff) |
Fix html bug : input field must be in a block tag
git-svn-id: http://piwigo.org/svn/trunk@6570 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-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> |