diff options
-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 %] |