diff options
author | lpsolit%gmail.com <> | 2005-08-10 18:47:58 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-10 18:47:58 +0200 |
commit | 6feae3e22d8de4aa89af6fbbc24ef69ded4ecfff (patch) | |
tree | bfe95761e24a12e8d077852bf077a8eb190bd742 /buglist.cgi | |
parent | 37e00b47795f1075db5f09a4217955fa96e81a6d (diff) | |
download | bugzilla-6feae3e22d8de4aa89af6fbbc24ef69ded4ecfff.tar.gz bugzilla-6feae3e22d8de4aa89af6fbbc24ef69ded4ecfff.tar.xz |
Bug 277466: saved search's old name is used when running a search - Patch by Rob Siklos <robzilla@siklos.ca> r=LpSolit,joel a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/buglist.cgi b/buglist.cgi index 6bc3af291..9846d6a3c 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -934,12 +934,11 @@ $vars->{'closedstates'} = ['CLOSED', 'VERIFIED', 'RESOLVED']; # The list of query fields in URL query string format, used when creating # URLs to the same query results page with different parameters (such as # a different sort order or when taking some action on the set of query -# results). To get this string, we start with the raw URL query string -# buffer that was created when we initially parsed the URL on script startup, -# then we remove all non-query fields from it, f.e. the sort order (order) -# and command type (cmdtype) fields. -$vars->{'urlquerypart'} = $buffer; -$vars->{'urlquerypart'} =~ s/(order|cmdtype)=[^&]*&?//g; +# results). To get this string, we call the Bugzilla::CGI::canoncalise_query +# function with a list of elements to be removed from the URL. +$vars->{'urlquerypart'} = $params->canonicalise_query('order', + 'cmdtype', + 'query_based_on'); $vars->{'order'} = $order; # The user's login account name (i.e. email address). |