-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 8.0
-
Fix Version/s: 8.3.4
-
Component/s: Access Control
-
Labels:None
-
Funded by:
In some cases the discription of booking method is displayed as "$confController.getLink().getOffer().getDescription()", possibly if the description is not an empty String, but a null value.
The following code in accesscontrol/ui/_content/configuration_list.html fixes that
#set($desc = $confController.getLink().getOffer().getDescription())
#if ($desc)
<tr class="$css b_access_desc">
<td colspan="5">$desc</td>
</tr>
#end