From aa2b44a4497f168c0260617e8ca0a086cdd88bdc Mon Sep 17 00:00:00 2001 From: Tim Repke <timmothey@gmx.de> Date: Thu, 13 Oct 2016 23:38:14 +0200 Subject: [PATCH] fix: backstepped people still shown in public listing --- registration-system/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/registration-system/index.php b/registration-system/index.php index 6d8a890..8f22b60 100644 --- a/registration-system/index.php +++ b/registration-system/index.php @@ -364,7 +364,8 @@ function index_show_signupTable($fid) { ["pseudo", "antyp", "abtyp", "anday", "abday", "comment", "studityp"], ["AND" => [ 'fahrt_id' => (int)$fid, - 'public' => 1 + 'public' => 1, + 'backstepped' => NULL ]]); if (!$data) echo '<div class="signups">Noch keine (sichtbaren) Anmeldungen!</div>'; -- GitLab