diff options
author | timeless%mozdev.org <> | 2003-05-26 07:26:00 +0200 |
---|---|---|
committer | timeless%mozdev.org <> | 2003-05-26 07:26:00 +0200 |
commit | cae811513ebcca61c83fc18499cc987f58a5fdc1 (patch) | |
tree | 36bd8b97eb3ea3ac7476a34554d157a723bab2bf | |
parent | 12a601d903aa0e9c63184f7ec2f0bb4f0dd04f6b (diff) | |
download | bugzilla-cae811513ebcca61c83fc18499cc987f58a5fdc1.tar.gz bugzilla-cae811513ebcca61c83fc18499cc987f58a5fdc1.tar.xz |
Bug 207085 Updating a stored query shouldn't return the same message as creating one
r=kiko
-rwxr-xr-x | buglist.cgi | 10 | ||||
-rw-r--r-- | template/en/default/global/messages.html.tmpl | 5 |
2 files changed, 12 insertions, 3 deletions
diff --git a/buglist.cgi b/buglist.cgi index 7a2c894bf..d0469cace 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -329,11 +329,16 @@ elsif ($::FORM{'cmdtype'} eq "doit" && $::FORM{'remember'}) { } my $new_in_footer = $tofooter; + $vars->{'message'} = "buglist_new_named_query"; # Don't add it to the list if they are reusing an existing query name. foreach my $query (@{$vars->{'user'}{'queries'}}) { - if ($query->{'name'} eq $name && $query->{'linkinfooter'} == 1) { - $new_in_footer = 0; + if ($query->{'name'} eq $name) { + $vars->{'message'} = "buglist_updated_named_query"; + if ($query->{'linkinfooter'} == 1) { + $new_in_footer = 0; + } + break; } } @@ -344,7 +349,6 @@ elsif ($::FORM{'cmdtype'} eq "doit" && $::FORM{'remember'}) { push(@{$vars->{'user'}{'queries'}}, \%query); } - $vars->{'message'} = "buglist_new_named_query"; $vars->{'queryname'} = $name; } } diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl index 482f7e35f..13136d6cf 100644 --- a/template/en/default/global/messages.html.tmpl +++ b/template/en/default/global/messages.html.tmpl @@ -36,10 +36,15 @@ [% title = "Adding field to query page..." %] [% link = "Click here if the page does not redisplay automatically." %] [% # --- %] + [% ELSIF message_tag == "buglist_load_named_query" %] [% title = BLOCK %]Loading your query named [% namedcmd %][% END %] [% link = "Click here if the page does not redisplay automatically." %] [% # --- %] + + [% ELSIF message_tag == "buglist_updated_named_query" %] + OK, your query named <code>[% queryname FILTER html %]</code> is updated. + [% ELSIF message_tag == "buglist_new_default_query" %] OK, you now have a new default query. You may also bookmark the result of any individual query. |