diff --git a/Classes/Controller/CategoryController.php b/Classes/Controller/CategoryController.php
index 029704a..2b73acc 100644
--- a/Classes/Controller/CategoryController.php
+++ b/Classes/Controller/CategoryController.php
@@ -115,10 +115,6 @@ public function contactListAction(\Slub\SlubEvents\Domain\Model\Category $catego
}
}
- #if ($category != NULL) {
- # $events = $this->eventRepository->findAllGbByCategory($category);
- #}
-
// get Default Category
if (is_null($category)) {
$category = $this->categoryRepository->findDefaultGeniusbarCategory();
diff --git a/Classes/Domain/Repository/EventRepository.php b/Classes/Domain/Repository/EventRepository.php
index 81628e7..4c2125e 100644
--- a/Classes/Domain/Repository/EventRepository.php
+++ b/Classes/Domain/Repository/EventRepository.php
@@ -124,7 +124,6 @@ public function findEventByContact($contact, $category = null)
if ($category != null) {
$constraints[] = $query->in('categories.uid', explode(',', $category));
}
- $constraints[] = $query->greaterThan('max_subscriber', 'subscribers');
$constraints[] = $query->greaterThan('start_date_time', strtotime('today'));
if (count($constraints)) {
diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg
index e08ad10..d27ea8a 100644
--- a/Documentation/Settings.cfg
+++ b/Documentation/Settings.cfg
@@ -1,6 +1,6 @@
[general]
project = SLUB Event Management
-release = 5.0
+release = 5.1
t3author = Alexander Bigga
copyright = 2013-2021 by the author
description = Tool for event registration and experts booking.
diff --git a/Resources/Private/Partials/Event/GbItem.html b/Resources/Private/Partials/Event/GbItem.html
index e4424d6..04c036a 100755
--- a/Resources/Private/Partials/Event/GbItem.html
+++ b/Resources/Private/Partials/Event/GbItem.html
@@ -5,7 +5,7 @@