diff options
author | timeless%mozdev.org <> | 2007-08-24 12:15:16 +0200 |
---|---|---|
committer | timeless%mozdev.org <> | 2007-08-24 12:15:16 +0200 |
commit | ab439a9ac6606f9382bf101b115bdb90bbd85e60 (patch) | |
tree | 8057c14c9c3b154503de03d66c2dcd292963651d /template | |
parent | 938fdbf58ef07cc3f2398adbcea435250da15131 (diff) | |
download | bugzilla-ab439a9ac6606f9382bf101b115bdb90bbd85e60.tar.gz bugzilla-ab439a9ac6606f9382bf101b115bdb90bbd85e60.tar.xz |
Bug 221827 Missing Bug ID shouldn't be handled as Invalid Bug ID
r=vladd a=mkanat
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index c91875812..5a33b75c5 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -746,12 +746,14 @@ [% title = "Invalid Attachment ID" %] The attachment id [% attach_id FILTER html %] is invalid. - [% ELSIF error == "invalid_bug_id_non_existent" %] + [% ELSIF error == "bug_id_does_not_exist" %] [% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %] [% terms.Bug %] #[% bug_id FILTER html %] does not exist. - [% ELSIF error == "invalid_bug_id_or_alias" %] - [% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %] + [% ELSIF error == "improper_bug_id_field_value" %] + [% title = BLOCK %] + [% IF bug_id %]Invalid [% ELSE %]Missing [% END %] [% terms.Bug %] ID + [% END %] [% IF bug_id %] '[% bug_id FILTER html %]' is not a valid [% terms.bug %] number [% IF Param("usebugaliases") %] |