From: Byron Jones Date: Wed, 29 Aug 2012 04:45:48 +0000 (+0800) Subject: Fix bustage caused by Bug 772953 X-Git-Tag: bugzilla-4.2.3~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b55436a724b9a65fb5a735cfd8965313e9161e3;p=thirdparty%2Fbugzilla.git Fix bustage caused by Bug 772953 --- diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index d0b3f37119..d58b190889 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"); }