fixed from error

This commit is contained in:
Torsten Schulz
2023-12-28 17:32:03 +01:00
parent a54c3f88de
commit 3b20af213e
2 changed files with 6 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ class Members extends Renderer {
$members = $this->getMemberList(true);
$tableBody = '<tbody>';
foreach ($members as $row) {
$tableBody .= '<tr>'
$tableBody .= '<tr' . ($row['status_text'] !== 'Mitgliedschaft bestätigt' ? ' style="color:#a0a0a0"' : '') . '>'
. '<td>' . $row['id'] . '</td>'
. '<td>' . $row['last_name'] . ', ' . $row['first_name'] . '</td>'
. '<td>' . $row['email'] . '</td>'