diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-09 09:18:53 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-03-09 09:18:53 +0100 |
| commit | 08da9f257ff4efc98dd058e81984ac9bd6e46639 (patch) | |
| tree | 5e397bb3771fa096b30d435a12bc6ab8687751b2 /templates/admin/topLinks.php | |
| parent | ef89c567131c55840192820ed7510497d970f36d (diff) | |
deprecate asSvg in favor of asImg, fixes #6330
Closes #6330
Merge request studip/studip!4802
Diffstat (limited to 'templates/admin/topLinks.php')
| -rw-r--r-- | templates/admin/topLinks.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/admin/topLinks.php b/templates/admin/topLinks.php index a97ef75..08336b3 100644 --- a/templates/admin/topLinks.php +++ b/templates/admin/topLinks.php @@ -18,7 +18,7 @@ <? if (isset($last_one)) : ?> <div style="float: left;"> <a href="<?= URLHelper::getLink('?#admin_top_links', ['cid' => $adminList[$last_one]['Seminar_id']]) ?>" title="<?= htmlReady($adminList[$last_one]['Name']) ?>"> - <?= Icon::create('arr_1left')->asSvg(['class' => 'text-bottom']) ?> + <?= Icon::create('arr_1left')->asImg(['class' => 'text-bottom']) ?> <?= _("zurück") ?> </a> </div> @@ -27,13 +27,13 @@ <div style="float: right;"> <a href="<?= URLHelper::getLink('?#admin_top_links', ['cid' => $adminList[$next_one]['Seminar_id']]) ?>" title="<?= htmlReady($adminList[$next_one]['Name']) ?>"> <?= _("vor") ?> - <?= Icon::create('arr_1right')->asSvg(['class' => 'text-bottom']) ?> + <?= Icon::create('arr_1right')->asImg(['class' => 'text-bottom']) ?> </a> </div> <? endif ?> <div> <a href="<?= URLHelper::getLink('adminarea_start.php', ['list' => 'TRUE']) ?>"> - <?= Icon::create('arr_1up')->asSvg(['class' => 'text-bottom']) ?> + <?= Icon::create('arr_1up')->asImg(['class' => 'text-bottom']) ?> <?= _("Liste") ?> </a> </div> |
