Skip to content

Commit

Permalink
Don't show referendards in teacher list
Browse files Browse the repository at this point in the history
  • Loading branch information
j0nem committed Nov 19, 2020
1 parent e424008 commit 607399e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/contao/templates/wb_ml_teacher.html5
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<tbody>
<?php $i = 0; ?>
<?php foreach ($this->arrData['members'] as $arrMember) : ?>
<?php if ($arrMember['disable'] !== 1 || $arrMember['referendar'] === 1) : ?>
<?php if (!$arrMember['disable'] && !$arrMember['referendar']) : ?>
<tr>
<td>
<?php echo $arrMember['name']; ?>
Expand Down

0 comments on commit 607399e

Please sign in to comment.