Skip to content
Snippets Groups Projects
Commit e5452ff5 authored by David Siegfried's avatar David Siegfried
Browse files

prevent php-warnings, refs #2268

Merge request studip/studip!1494
parent 35452923
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ if (!$item) { ...@@ -30,7 +30,7 @@ if (!$item) {
?> ?>
<tr class="<?= htmlReady($classes) ?>" <tr class="<?= htmlReady($classes) ?>"
data-range_id="<?= htmlReady($item['range_id'] ?? '') ?>"> data-range_id="<?= htmlReady($item['range_id'] ?? '') ?>">
<td class="item-name"><?= htmlReady($item['name']) ?></td> <td class="item-name"><?= htmlReady($item['name'] ?? '') ?></td>
<td class="actions"> <td class="actions">
<a href="<?= Room::getLinkForAction('show', (!empty($item) ? $item['range_id'] : 'RANGE_ID')) ?>" data-dialog> <a href="<?= Room::getLinkForAction('show', (!empty($item) ? $item['range_id'] : 'RANGE_ID')) ?>" data-dialog>
<?= Icon::create( <?= Icon::create(
......
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