diff options
| author | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2023-11-17 16:46:30 +0000 |
|---|---|---|
| committer | Elmar Ludwig <elmar.ludwig@uni-osnabrueck.de> | 2023-11-17 16:46:30 +0000 |
| commit | df2c285ccb1df958285eecba3d8a8f25144f78d6 (patch) | |
| tree | 9f4ec5cc40175010d51d4b50c34ccef99155c672 /templates | |
| parent | b0d92db0cde16a51cb4733dfd068d4c50ec006d4 (diff) | |
move view filter into table, add combined filter widget, fixes #3421
Closes #3421
Merge request studip/studip!2374
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/shared/action-menu.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/shared/action-menu.php b/templates/shared/action-menu.php index 4f3b5f1..bc2cc50 100644 --- a/templates/shared/action-menu.php +++ b/templates/shared/action-menu.php @@ -20,9 +20,9 @@ </button> <div class="action-menu-content"> <div class="action-menu-title" aria-hidden="true"> - <?= _('Aktionen') ?> + <?= htmlReady($title) ?> </div> - <ul class="action-menu-list" aria-label="<?= _('Aktionen') ?>"> + <ul class="action-menu-list" aria-label="<?= htmlReady($title) ?>"> <? foreach ($actions as $action): ?> <li class="action-menu-item <? if (isset($action['attributes']['disabled'])) echo 'action-menu-item-disabled'; ?>"> <? if ($action['type'] === 'link'): ?> |
