diff options
author | lpsolit%gmail.com <> | 2006-08-12 07:21:33 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-08-12 07:21:33 +0200 |
commit | 7a3222151fdb306d1e64cc942b0eb44b2662c79a (patch) | |
tree | 5072137a8c44af537b0bff9ce405867c876a9906 /template/en | |
parent | d962a2a3d0c8aa0a21419a8765d141f5a7076907 (diff) | |
download | bugzilla-7a3222151fdb306d1e64cc942b0eb44b2662c79a.tar.gz bugzilla-7a3222151fdb306d1e64cc942b0eb44b2662c79a.tar.xz |
Bug 310747: index.cgi invalid HTML when logged out - Patch by victory(_RSZ_) <bmo@rsz.jp> r=LpSolit a=myk
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/index.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl index 9e11e4af0..8d520dfab 100644 --- a/template/en/default/index.html.tmpl +++ b/template/en/default/index.html.tmpl @@ -108,7 +108,9 @@ function addSidebar() { <li id="logout"><a href="relogin.cgi">Log out [% user.login FILTER html %]</a></li> [% END %] [% ELSIF user.authorizer.can_login %] + </ul> [% PROCESS "account/auth/login-small.html.tmpl" %] + <ul> [% IF Param('createemailregexp') && user.authorizer.user_can_create_account %] <li id="account"><a href="createaccount.cgi">Open a new [% terms.Bugzilla %] account</a></li> [% END %] @@ -120,7 +122,7 @@ function addSidebar() { </ul> - <form id="show-bug" name="f" action="buglist.cgi" method="get" + <form id="f" name="f" action="buglist.cgi" method="get" onsubmit="if (this.quicksearch.value == '') { alert('Please enter one or more search terms first.'); return false; } return true;"> |