aboutsummaryrefslogtreecommitdiff
path: root/app/views/vips/sheets/content_bar_icons.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2026-03-09 09:18:53 +0100
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2026-03-09 09:18:53 +0100
commit08da9f257ff4efc98dd058e81984ac9bd6e46639 (patch)
tree5e397bb3771fa096b30d435a12bc6ab8687751b2 /app/views/vips/sheets/content_bar_icons.php
parentef89c567131c55840192820ed7510497d970f36d (diff)
deprecate asSvg in favor of asImg, fixes #6330
Closes #6330 Merge request studip/studip!4802
Diffstat (limited to 'app/views/vips/sheets/content_bar_icons.php')
-rw-r--r--app/views/vips/sheets/content_bar_icons.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/vips/sheets/content_bar_icons.php b/app/views/vips/sheets/content_bar_icons.php
index b0f98c1..5d6268a 100644
--- a/app/views/vips/sheets/content_bar_icons.php
+++ b/app/views/vips/sheets/content_bar_icons.php
@@ -1,19 +1,19 @@
<? if (isset($prev_exercise_url)): ?>
<a href="<?= htmlReady($prev_exercise_url) ?>">
- <?= Icon::create('arr_1left')->asSvg(24, ['title' => _('Vorige Aufgabe')]) ?>
+ <?= Icon::create('arr_1left')->asImg(24, ['title' => _('Vorige Aufgabe')]) ?>
</a>
<? else: ?>
<span>
- <?= Icon::create('arr_1left', Icon::ROLE_INACTIVE)->asSvg(24) ?>
+ <?= Icon::create('arr_1left', Icon::ROLE_INACTIVE)->asImg(24) ?>
</span>
<? endif ?>
<? if (isset($next_exercise_url)): ?>
<a href="<?= htmlReady($next_exercise_url) ?>">
- <?= Icon::create('arr_1right')->asSvg(24, ['title' => _('Nächste Aufgabe')]) ?>
+ <?= Icon::create('arr_1right')->asImg(24, ['title' => _('Nächste Aufgabe')]) ?>
</a>
<? else: ?>
<span>
- <?= Icon::create('arr_1right', Icon::ROLE_INACTIVE)->asSvg(24) ?>
+ <?= Icon::create('arr_1right', Icon::ROLE_INACTIVE)->asImg(24) ?>
</span>
<? endif ?>