Skip to content
Snippets Groups Projects
Commit 6dee621e authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fixes #4086

Closes #4086

Merge request studip/studip!2930
parent 2a7f4401
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,8 @@ ...@@ -20,8 +20,8 @@
<? foreach ($GLOBALS['SEM_TREE_TYPES'] as $index => $type) : ?> <? foreach ($GLOBALS['SEM_TREE_TYPES'] as $index => $type) : ?>
<option value="<?= htmlReady($index) ?>"> <option value="<?= htmlReady($index) ?>">
<?= $type['name'] ?: _('Standard') ?> <?= $type['name'] ?: _('Standard') ?>
<?= !$type['editable'] ? _('(nicht mehr nachträglich änderbar)') : '' ?> <?= empty($type['editable']) ? _('(nicht mehr nachträglich änderbar)') : '' ?>
<?= $type['hidden'] ? _('(dieser Knoten ist versteckt)') : '' ?> <?= !empty($type['hidden']) ? _('(dieser Knoten ist versteckt)') : '' ?>
</option> </option>
<? endforeach ?> <? endforeach ?>
</select> </select>
......
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