From a6750cb099ae88ffe3ac7de44ca0e63c87e8542e Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sat, 5 Apr 2008 19:51:42 +0000 Subject: =?UTF-8?q?Bug=20427226:=20Do=20not=20display=20the=20requestee=20?= =?UTF-8?q?field=20if=20the=20flag=20is=20not=20requestable=20-=20Patch=20?= =?UTF-8?q?by=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Buclin=20=20r/a=3DLpSolit=20(module=20owner)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/en/default/flag/list.html.tmpl | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'template/en/default/flag/list.html.tmpl') diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index 2b29403c8..462e4063c 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -136,16 +136,23 @@ [% IF any_flags_requesteeble %] - [% IF type.is_active && type.is_requesteeble %] + [% IF (type.is_active && type.is_requestable && type.is_requesteeble) || flag.requestee %] [% IF Param('usemenuforusers') %] + [% flag_custom_list = flag.type.grant_list %] + [% IF !(type.is_active && type.is_requestable && type.is_requesteeble) %] + [%# We are here only because there was already a requestee. In this case, + the only valid action is to remove the requestee or leave it alone; + nothing else. %] + [% flag_custom_list = [flag.requestee] %] + [% END %] [% INCLUDE global/userselect.html.tmpl name => "requestee-$flag.id" id => "requestee-$flag.id" value => flag.requestee.login multiple => 0 emptyok => 1 - custom_userlist => flag.type.grant_list + custom_userlist => flag_custom_list %] [% ELSE %] ( [% IF any_flags_requesteeble %] - [% IF type.is_requesteeble %] + [% IF type.is_requestable && type.is_requesteeble %] [% IF Param('usemenuforusers') %] [% INCLUDE global/userselect.html.tmpl @@ -243,7 +250,7 @@ [% IF any_flags_requesteeble %] - [% IF type.is_requesteeble %] + [% IF type.is_requestable && type.is_requesteeble %] [% IF Param('usemenuforusers') %] [% INCLUDE global/userselect.html.tmpl -- cgit v1.2.1