diff options
author | Koosha Khajeh Moogahi <koosha.khajeh@gmail.com> | 2013-01-02 00:40:17 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-02 00:40:17 +0100 |
commit | d8127f98072f24f81e77215eab30494a4bf9b16e (patch) | |
tree | 71e17202e5a4e4cc3f7a9deebd1b184da4c366a0 /template/en/default/bug | |
parent | 70530a5c592bf13de37ac895c71a9ce299170870 (diff) | |
download | bugzilla-d8127f98072f24f81e77215eab30494a4bf9b16e.tar.gz bugzilla-d8127f98072f24f81e77215eab30494a4bf9b16e.tar.xz |
Bug 353351: The name of the component in enter_bug.cgi should not be case sensitive
r=glob a=LpSolit
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 62b2d6a60..132385ef5 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -212,7 +212,7 @@ TUI_hide_default('attachment_text_field'); [% NEXT IF NOT c.is_active %] <option value="[% c.name FILTER html %]" id="v[% c.id FILTER html %]_component" - [% IF c.name == default.component_ %] + [% IF c.name.lower == default.component_.lower %] [%# This is for bug/field.html.tmpl, for visibility-related # controls. %] [% default.component_id = c.id %] |