diff options
| author | Byron Jones <bjones@mozilla.com> | 2012-08-29 12:45:06 +0800 |
|---|---|---|
| committer | Byron Jones <bjones@mozilla.com> | 2012-08-29 12:45:06 +0800 |
| commit | f54efb84d3118e169e6c6125db6afd9b6ac43633 (patch) | |
| tree | ed7150bea0f96430262e9d3ffa5c75c4c749c4f3 | |
| parent | 913f68b91f16bd364d9709c85ac120f061913087 (diff) | |
| download | bugs-f54efb84d3118e169e6c6125db6afd9b6ac43633.tar bugs-f54efb84d3118e169e6c6125db6afd9b6ac43633.tar.gz bugs-f54efb84d3118e169e6c6125db6afd9b6ac43633.tar.bz2 bugs-f54efb84d3118e169e6c6125db6afd9b6ac43633.tar.xz bugs-f54efb84d3118e169e6c6125db6afd9b6ac43633.zip | |
Fix bustage caused by Bug 772953
| -rw-r--r-- | Bugzilla/CGI.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 0385af2cb..0b75eeb0a 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -172,7 +172,10 @@ sub clean_search_url { $self->delete('Bugzilla_remember', 'GoAheadAndLogIn'); # Delete the token if we're not updating the defaults - unless (defined $self->param('remtype') && $self->param('remtype') eq 'asdefault') { + unless (defined $self->param('remtype') + && ($self->param('remtype') eq 'asdefault' + || $self->param('remtype') eq 'asnamed')) + { $self->delete("token"); } |
