Skip to content

Commit

Permalink
0040173: Failed test: $$ Ansicht des Mitgliederreiters ändern
Browse files Browse the repository at this point in the history
  • Loading branch information
smeyer-ilias committed Jan 26, 2024
1 parent 6195ce1 commit 7a53b88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ protected function fillRow(array $a_set): void
foreach ($this->getSelectedColumns() as $field) {
switch ($field) {
case 'gender':
$a_set['gender'] = $a_set['gender'] ? $this->lng->txt('gender_' . $a_set['gender']) : '';
$a_set['gender'] = ($a_set['gender'] ?? '') ? $this->lng->txt('gender_' . $a_set['gender']) : '';
$this->tpl->setCurrentBlock('custom_fields');
$this->tpl->setVariable('VAL_CUST', $a_set[$field]);
$this->tpl->parseCurrentBlock();
Expand Down

0 comments on commit 7a53b88

Please sign in to comment.