diff options
author | nikrou <nikrou@piwigo.org> | 2006-04-12 14:46:34 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2006-04-12 14:46:34 +0000 |
commit | f23929797520294570d07f5a82e263b98a89bd97 (patch) | |
tree | 9a382517cf7d35e788c257379a83c08d33cc4e86 /template/yoga/search.tpl | |
parent | 868ff17cf6c56042eafc19a46b767486d96a25b4 (diff) |
fixed html bug: name removed and tag "a" must not be closed before label
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1150 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/search.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/yoga/search.tpl b/template/yoga/search.tpl index f841c131e..0531bcb35 100644 --- a/template/yoga/search.tpl +++ b/template/yoga/search.tpl @@ -63,7 +63,7 @@ <!-- END start_month --> </select> <input name="start_year" type="text" size="4" maxlength="4"> - <a href="#" name="#" onClick="document.post.start_day.value={TODAY_DAY};document.post.start_month.value={TODAY_MONTH};document.post.start_year.value={TODAY_YEAR};" />{lang:today}</a> + <a href="#" onClick="document.post.start_day.value={TODAY_DAY};document.post.start_month.value={TODAY_MONTH};document.post.start_year.value={TODAY_YEAR};">{lang:today}</a> </td> </tr> <tr> @@ -80,7 +80,7 @@ <!-- END end_month --> </select> <input name="end_year" type="text" size="4" maxlength="4"> - <a href="#" name="#" onClick="document.post.end_day.value={TODAY_DAY};document.post.end_month.value={TODAY_MONTH};document.post.end_year.value={TODAY_YEAR};" />{lang:today}</a> + <a href="#" onClick="document.post.end_day.value={TODAY_DAY};document.post.end_month.value={TODAY_MONTH};document.post.end_year.value={TODAY_YEAR};">{lang:today}</a> </td> </tr> </table> |