diff options
author | jake%bugzilla.org <> | 2004-12-21 17:10:14 +0000 |
---|---|---|
committer | jake%bugzilla.org <> | 2004-12-21 17:10:14 +0000 |
commit | c3402b88bc5e972285ebb79663f9795873a057d5 (patch) | |
tree | 6c8e9e590bc22e5af82bee41be78a63efed3d286 /template | |
parent | Bug 137631 - Add a lifecycle (or workflow) diagram to the guide (diff) | |
download | bugzilla-c3402b88bc5e972285ebb79663f9795873a057d5.tar.gz bugzilla-c3402b88bc5e972285ebb79663f9795873a057d5.tar.bz2 bugzilla-c3402b88bc5e972285ebb79663f9795873a057d5.zip |
Bug 264601 - Bugzilla will now tell a user which field contained an "invalid bug
number or alias."
Patch by Frédéric Buclin <LpSolit@netscape.net>
r=myk, a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/field-descs.none.tmpl | 3 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 24 |
2 files changed, 15 insertions, 12 deletions
diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl index 7a21ca056..da804ca87 100644 --- a/template/en/default/global/field-descs.none.tmpl +++ b/template/en/default/global/field-descs.none.tmpl @@ -26,6 +26,7 @@ [% field_descs = { "[Bug creation]" => "[$terms.Bug creation]", "alias" => "Alias", "assigned_to" => "Assignee", + "blocked" => "Blocks", "bug_file_loc" => "URL", "bug_id" => "$terms.Bug ID", "bug_severity" => "Severity", @@ -37,6 +38,8 @@ "component" => "Component", "creation_ts" => "$terms.Bug Creation time", "delta_ts" => "Last Changed time", + "dependson" => "Depends on", + "dup_id" => "Duplicate", "estimated_time" => "Orig. Est.", "everconfirmed" => "Ever confirmed?", "groupset" => "Groupset", diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 81a96885d..d5d7b6b36 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -152,11 +152,6 @@ [% title = "Description Required" %] You must provide a description of the [% terms.bug %]. - [% ELSIF error == "dupe_invalid_bug_id" %] - [% title = BLOCK %]Valid [% terms.Bug %] Number Required[% END %] - You must specify a valid [% terms.bug %] number of which this - [%+ terms.bug %] is a duplicate. The [% terms.bug %] has not been changed. - [% ELSIF error == "dupe_of_self_disallowed" %] [% title = "Cannot mark $terms.abug as a duplicate of itself" %] You can't mark [% terms.abug %] as a duplicate of itself. @@ -326,19 +321,24 @@ [% title = "Invalid Attachment ID" %] The attachment id [% attach_id FILTER html %] is invalid. - [% ELSIF error == "invalid_bug_id" %] - [% title = BLOCK %]Invalid [% terms.Bug %] ID[% END %] - The [% terms.bug %] id [% bug_id FILTER html %] is invalid. - [% ELSIF error == "invalid_bug_id_non_existent" %] [% 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 %] - '[% bug_id FILTER html %]' is not a valid [% terms.bug %] number - [% IF Param("usebugaliases") %] nor an alias - to [% terms.abug %] number[% END %]. + [% IF bug_id %] + '[% bug_id FILTER html %]' is not a valid [% terms.bug %] number + [% IF Param("usebugaliases") %] + nor an alias to [% terms.abug %] number + [% END %]. + [% ELSE %] + [% IF field %] + The '[% field_descs.$field FILTER html %]' field + cannot be empty. + [% END %] + You must enter a valid [% terms.bug %] number! + [% END %] <noscript> If you are trying to use QuickSearch, you need to enable JavaScript in your browser. |