diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2022-03-03 13:51:02 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2022-03-03 13:51:02 +0000 |
| commit | 2db98f39003b95ec74a8a1e91395a5dfa14ff25b (patch) | |
| tree | 9c427f84af5325aafd48254805dff8028f2e1034 | |
| parent | 1ec14e3bcb0bcca695c08b8ecc2172df6c4ca83e (diff) | |
Fix for BIESt #761
| -rw-r--r-- | app/views/resources/_common/_resource_tr.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/resources/_common/_resource_tr.php b/app/views/resources/_common/_resource_tr.php index 0cc3b59..d459013 100644 --- a/app/views/resources/_common/_resource_tr.php +++ b/app/views/resources/_common/_resource_tr.php @@ -254,7 +254,7 @@ } } else { if ($resource->propertyExists('booking_plan_is_public')) { - if ($resource->booking_plan_is_public) { + if ($resource->getProperty('booking_plan_is_public')) { $actions['0020'] = [ $resource->getActionLink('booking_plan'), _('Belegungsplan anzeigen'), |
