Skip to content
Snippets Groups Projects
Commit a69083a3 authored by Peter Thienel's avatar Peter Thienel Committed by Jan-Hendrik Willms
Browse files

PHP8-TypeError beim Genehmigen eines Studiengangs

Closes #4899

Merge request studip/studip!3674
parent 4b946d95
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@
<? endif ?>
<? endif; ?>
<? endforeach; ?>
<? if (is_array($all_contacts) && count($all_contacts)) : ?>
<? if (!empty($all_contacts)) : ?>
<tr>
<td>
<strong><?= _('Ihre AnsprechpartnerInnen') ?></strong>
......@@ -196,7 +196,7 @@
</td>
</tr>
<? endif ?>
<? if (is_array($all_documents) && count($all_documents)) : ?>
<? if (!empty($all_documents)) : ?>
<tr>
<td>
<strong><?= _('Dokumente: Ordnungen, Formulare, Informationen') ?></strong>
......@@ -222,7 +222,7 @@
</td>
</tr>
<? endif ?>
<? if (count($all_aufbaustgs)) : ?>
<? if (!empty($all_aufbaustgs)) : ?>
<tr>
<td>
<strong><?= _('Aufbau-/Kombinationsstudiengänge') ?></strong>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment