diff options
-rw-r--r-- | template/en/default/flag/list.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index 462e4063c..8aef809e0 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -181,7 +181,7 @@ <td> <select id="flag_type-[% type.id %]" name="flag_type-[% type.id %]" title="[% type.description FILTER html %]" - [% " disabled=\"disabled\"" UNLESS user.can_request_flag(type) %] + [% " disabled=\"disabled\"" UNLESS (type.is_requestable && user.can_request_flag(type)) || user.can_set_flag(type) %] onchange="toggleRequesteeField(this);" class="flag_select"> <option value="X"></option> @@ -235,7 +235,7 @@ <td> <select id="flag_type-[% type.id %]" name="flag_type-[% type.id %]" title="[% type.description FILTER html %]" - [% " disabled=\"disabled\"" UNLESS user.can_request_flag(type) %] + [% " disabled=\"disabled\"" UNLESS (type.is_requestable && user.can_request_flag(type)) || user.can_set_flag(type) %] onchange="toggleRequesteeField(this);" class="flag_select"> <option value="X"></option> |