зеркало из https://github.com/mozilla/gecko-dev.git
Bug 83044 - Any page is now capable of being a login page simply by adding the ?GoAheadAndLogin=1 option to the URL. All links have been changed to make index.cgi the default login page instead of query.cgi.
r=joel, a=justdave
This commit is contained in:
Родитель
df98d505bb
Коммит
3f10515dc3
|
@ -51,6 +51,7 @@ sub login {
|
|||
# (double cookies, odd compat code settings, etc)
|
||||
return $user if $user->id;
|
||||
|
||||
$type = LOGIN_REQUIRED if Bugzilla->cgi->param('GoAheadAndLogIn');
|
||||
$type = LOGIN_NORMAL unless defined $type;
|
||||
|
||||
# Log in using whatever methods are defined in user_info_class.
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
<p>
|
||||
When the e-mail arrives,
|
||||
<a href="query.cgi?GoAheadAndLogIn=1">log in here</a>.
|
||||
<a href="index.cgi?GoAheadAndLogIn=1">log in here</a>.
|
||||
</p>
|
||||
|
||||
[% PROCESS global/footer.html.tmpl %]
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
|
||||
[% ELSIF message_tag == "logged_out" %]
|
||||
[% title = "Logged Out" %]
|
||||
[% url = "query.cgi?GoAheadAndLogIn=1" %]
|
||||
[% url = "index.cgi?GoAheadAndLogIn=1" %]
|
||||
[% link = "Log in again." %]
|
||||
<b>Your login has been forgotten</b>.
|
||||
The cookie that was remembering your login is now gone. You will be
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
[% IF Param('createemailregexp') %]
|
||||
| <a href="createaccount.cgi">New Account</a>
|
||||
[% END %]
|
||||
| <a href="query.cgi?GoAheadAndLogIn=1">Log In</a>
|
||||
| <a href="index.cgi?GoAheadAndLogIn=1">Log In</a>
|
||||
[% END %]
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -72,7 +72,7 @@ function addSidebar() {
|
|||
<li id="logout"><a href="relogin.cgi">Logout [% user.login FILTER html %]</a></li>
|
||||
[% END %]
|
||||
[% ELSE %]
|
||||
<li id="login"><a href="query.cgi?GoAheadAndLogIn=1">Log in to an existing account</a></li>
|
||||
<li id="login"><a href="index.cgi?GoAheadAndLogIn=1">Log in to an existing account</a></li>
|
||||
[% IF Param('createemailregexp') %]
|
||||
<li id="account"><a href="createaccount.cgi">Open a new [% terms.Bugzilla %] account</a></li>
|
||||
[% END %]
|
||||
|
|
|
@ -113,7 +113,7 @@ function normal_keypress_handler( aEvent ) {
|
|||
|
||||
[% ELSE %]
|
||||
<text class="text-link" onclick="load_relative_url('createaccount.cgi')" value="new user"/>
|
||||
<text class="text-link" onclick="load_relative_url('query.cgi?GoAheadAndLogIn=1')" value="log in"/>
|
||||
<text class="text-link" onclick="load_relative_url('index.cgi?GoAheadAndLogIn=1')" value="log in"/>
|
||||
[% END %]
|
||||
|
||||
</box>
|
||||
|
|
Загрузка…
Ссылка в новой задаче