Commit f54efb84 authored by Byron Jones's avatar Byron Jones

Fix bustage caused by Bug 772953

parent 913f68b9
......@@ -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");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment