diff options
-rwxr-xr-x | buglist.cgi | 11 | ||||
-rw-r--r-- | template/en/default/account/prefs/saved-searches.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/list/list.html.tmpl | 3 |
3 files changed, 8 insertions, 8 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). diff --git a/template/en/default/account/prefs/saved-searches.html.tmpl b/template/en/default/account/prefs/saved-searches.html.tmpl index 8827a89ba..741facc17 100644 --- a/template/en/default/account/prefs/saved-searches.html.tmpl +++ b/template/en/default/account/prefs/saved-searches.html.tmpl @@ -64,7 +64,7 @@ <tr> <td>[% q.name FILTER html %]</td> <td> - <a href="buglist.cgi?[% q.query FILTER html %]">Run</a> + <a href="buglist.cgi?cmdtype=runnamed&namedcmd=[% q.name FILTER url_quote %]">Run</a> </td> <td> <a href="query.cgi?[% q.query FILTER html %]&known_name=[% q.name FILTER url_quote %]">Edit</a> diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 9961bb1b3..a7b2b344c 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -159,7 +159,8 @@ <a href="buglist.cgi? [% urlquerypart FILTER html %]&ctype=ics">iCalendar</a> | <a href="colchange.cgi? - [% urlquerypart FILTER html %]">Change Columns</a> | + [% urlquerypart FILTER html %]&query_based_on= + [% defaultsavename OR searchname FILTER html %]">Change Columns</a> | [% IF bugs.size > 1 && caneditbugs && !dotweak %] <a href="buglist.cgi?[% urlquerypart FILTER html %] |