Commit d8127f98 authored by Koosha Khajeh Moogahi's avatar Koosha Khajeh Moogahi Committed by Frédéric Buclin

Bug 353351: The name of the component in enter_bug.cgi should not be case sensitive

r=glob a=LpSolit
parent 70530a5c
...@@ -212,7 +212,7 @@ TUI_hide_default('attachment_text_field'); ...@@ -212,7 +212,7 @@ TUI_hide_default('attachment_text_field');
[% NEXT IF NOT c.is_active %] [% NEXT IF NOT c.is_active %]
<option value="[% c.name FILTER html %]" <option value="[% c.name FILTER html %]"
id="v[% c.id FILTER html %]_component" 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 [%# This is for bug/field.html.tmpl, for visibility-related
# controls. %] # controls. %]
[% default.component_id = c.id %] [% default.component_id = c.id %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment