From 47193c652200dce8051f3ae75848e1cc45f0427d Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 12 Jan 2010 16:11:20 +0000 Subject: [PATCH] =?utf8?q?Bug=20509030:=20"Changes=20older=20than"=20in=20?= =?utf8?q?Advanced=20Search=20is=20sometimes=20ignored=20-=20Patch=20by=20?= =?utf8?q?Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Buclin=20=20?= =?utf8?q?r=3Dgerv=20a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Bugzilla/CGI.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index bebff2d630..8a0e2efe91 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -173,7 +173,8 @@ sub clean_search_url { # chfieldto is set to "Now" by default in query.cgi. But if none # of the other chfield parameters are set, it's meaningless. if (!defined $self->param('chfieldfrom') && !$self->param('chfield') - && !defined $self->param('chfieldvalue')) + && !defined $self->param('chfieldvalue') && $self->param('chfieldto') + && lc($self->param('chfieldto')) eq 'now') { $self->delete('chfieldto'); } -- 2.47.2