Commit e397e43a authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 482365: Values displayed in userselect.html.tmpl may be incorrect if "value"…

Bug 482365: Values displayed in userselect.html.tmpl may be incorrect if "value" is not explicitly set - Patch by Fré©ric Buclin <LpSolit@gmail.com> r=wicked a=LpSolit
parent e28ef56f
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
[% INCLUDE global/userselect.html.tmpl [% INCLUDE global/userselect.html.tmpl
name => "initialowner" name => "initialowner"
id => "initialowner" id => "initialowner"
value => ""
size => 64 size => 64
%] %]
</td> </td>
...@@ -64,6 +65,7 @@ ...@@ -64,6 +65,7 @@
[% INCLUDE global/userselect.html.tmpl [% INCLUDE global/userselect.html.tmpl
name => "initialqacontact" name => "initialqacontact"
id => "initialqacontact" id => "initialqacontact"
value => ""
size => 64 size => 64
emptyok => 1 emptyok => 1
%] %]
...@@ -78,6 +80,7 @@ ...@@ -78,6 +80,7 @@
[% INCLUDE global/userselect.html.tmpl [% INCLUDE global/userselect.html.tmpl
name => "initialcc" name => "initialcc"
id => "initialcc" id => "initialcc"
value => ""
size => 64 size => 64
multiple => 5 multiple => 5
%] %]
......
...@@ -872,6 +872,7 @@ ...@@ -872,6 +872,7 @@
[% INCLUDE global/userselect.html.tmpl [% INCLUDE global/userselect.html.tmpl
id => "newcc" id => "newcc"
name => "newcc" name => "newcc"
value => ""
size => 30 size => 30
multiple => 5 multiple => 5
%] %]
......
...@@ -206,6 +206,7 @@ ...@@ -206,6 +206,7 @@
id => "requestee_type-$type.id" id => "requestee_type-$type.id"
multiple => type.is_multiplicable * 3 multiple => type.is_multiplicable * 3
emptyok => !type.is_multiplicable emptyok => !type.is_multiplicable
value => ""
custom_userlist => type.grant_list custom_userlist => type.grant_list
%] %]
[% ELSE %] [% ELSE %]
...@@ -260,6 +261,7 @@ ...@@ -260,6 +261,7 @@
id => "requestee_type-$type.id" id => "requestee_type-$type.id"
multiple => type.is_multiplicable * 3 multiple => type.is_multiplicable * 3
emptyok => !type.is_multiplicable emptyok => !type.is_multiplicable
value => ""
custom_userlist => type.grant_list custom_userlist => type.grant_list
%] %]
[% ELSE %] [% ELSE %]
......
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