diff --git a/lib/Service/OptionService.php b/lib/Service/OptionService.php index 50c0f864f..82062157e 100644 --- a/lib/Service/OptionService.php +++ b/lib/Service/OptionService.php @@ -121,7 +121,9 @@ class OptionService { if ($this->acl->getPoll()->getHideBookedUp() && !$this->acl->getIsAllowed(Acl::PERMISSION_POLL_EDIT)) { // hide booked up options except the user has edit permission $this->filterBookedUp(); - } elseif ($this->acl->getIsAllowed(Acl::PERMISSION_POLL_RESULTS_VIEW)) { + } + + if ($this->acl->getIsAllowed(Acl::PERMISSION_POLL_RESULTS_VIEW)) { $this->calculateRanks(); }