diff options
author | wurblzap%gmail.com <> | 2008-03-17 15:12:13 +0100 |
---|---|---|
committer | wurblzap%gmail.com <> | 2008-03-17 15:12:13 +0100 |
commit | 2f97c27533566f1024b5364dc0dd71138d975faf (patch) | |
tree | c90c0de02d964354061889ff8c32a584522e86a8 /template | |
parent | 605076207b68ea30de0db7ec19bf8684aefc18e2 (diff) | |
download | bugzilla-2f97c27533566f1024b5364dc0dd71138d975faf.tar.gz bugzilla-2f97c27533566f1024b5364dc0dd71138d975faf.tar.xz |
Bug 422935 â Status values for âTake Bugâ functionality on attachment creation not localizable.
Patch by Marc Schumann <wurblzap@gmail.com>;
r=LpSolit; a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/attachment/create.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/attachment/create.html.tmpl b/template/en/default/attachment/create.html.tmpl index 3a5353577..7944228f3 100644 --- a/template/en/default/attachment/create.html.tmpl +++ b/template/en/default/attachment/create.html.tmpl @@ -21,7 +21,7 @@ # Marc Schumann <wurblzap@gmail.com> #%] -[% PROCESS global/variables.none.tmpl %] +[% PROCESS "global/field-descs.none.tmpl" %] [%# Define strings that will serve as the title and header of this page %] [% title = BLOCK %]Create New Attachment for [% terms.Bug %] #[% bug.bug_id %][% END %] @@ -82,10 +82,10 @@ [% IF bug_statuses.size %] <label for="takebug">and set the [% terms.bug %] status to</label> <select id="bug_status" name="bug_status"> - <option label="[% bug.status.name FILTER html %]">[% bug.status.name FILTER html %] (current)</option> + <option value="[% bug.status.name FILTER html %]">[% get_status(bug.status.name) FILTER html %] (current)</option> [% FOREACH bug_status = bug_statuses %] [% NEXT IF bug_status.id == bug.status.id %] - <option label="[% bug_status.name FILTER html %]">[% bug_status.name FILTER html %]</option> + <option value="[% bug_status.name FILTER html %]">[% get_status(bug_status.name) FILTER html %]</option> [% END %] </select> [% END %] |