]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 465930: Some fields have no description in the user auto-completion form - Patch...
authorlpsolit%gmail.com <>
Thu, 17 Dec 2009 23:06:14 +0000 (23:06 +0000)
committerlpsolit%gmail.com <>
Thu, 17 Dec 2009 23:06:14 +0000 (23:06 +0000)
template/en/default/global/confirm-user-match.html.tmpl

index f961ee0b92026673cf9df28b89351d9b03f18d78..40dccc6b57a84e64c0655ab7d4ab7aaa541efbbc 100644 (file)
 [%# use the global field descs %]
 [% PROCESS "global/field-descs.none.tmpl" %]
 
+[%# This lists fields which use the user auto-completion feature and which
+  # are not listed in field_descs. %]
+[% field_labels = { # Used by editcomponents.cgi
+                    "initialcc"               => "Default CC List",
+                    "initialowner"            => "Default Assignee",
+                    "initialqacontact"        => "Default QA Contact",
+                    # Used by process_bug.cgi
+                    "masscc"                  => "CC List",
+                    # Used by request.cgi
+                    "requester"               => "Requester",
+                    "requestee"               => "Requestee",
+                    # Used by userprefs.cgi
+                    "new_watchedusers"        => "Watch List",
+
+   }
+%]
 [% IF matchsuccess == 1 %]
   [% PROCESS global/header.html.tmpl title="Confirm Match" %]
 
 
 [% BLOCK field_names %]
 
-  [% IF field_descs.${field_name} %]
-    [%  field_descs.${field_name} FILTER html -%]
-
-  [%-# ELSIF for things that don't belong in the field_descs hash here -%]
-
+  [% IF field_descs.$field_name %]
+    [% field_descs.$field_name FILTER html %]
+  [% ELSIF field_labels.$field_name %]
+    [% field_labels.$field_name FILTER html %]
   [% ELSIF field_name.match("^requestee") %]
     [% fields.${field_name}.flag_type.name %] requestee
-
   [% ELSE %]
     [% field_name FILTER html %]
   [% END %]