diff options
Diffstat (limited to 'Bugzilla')
-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 d0b3f3711..d58b19088 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -170,7 +170,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"); } |