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 /app/views/blubber/compose.php | |
| parent | ef89c567131c55840192820ed7510497d970f36d (diff) | |
deprecate asSvg in favor of asImg, fixes #6330
Closes #6330
Merge request studip/studip!4802
Diffstat (limited to 'app/views/blubber/compose.php')
| -rw-r--r-- | app/views/blubber/compose.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/blubber/compose.php b/app/views/blubber/compose.php index 2cdb89b..67ba605 100644 --- a/app/views/blubber/compose.php +++ b/app/views/blubber/compose.php @@ -14,19 +14,19 @@ <div> <a href="#" onclick="$('.file_select_possibilities').hide(); $('.private_blubber_composer').show(); return false;"> - <?= Icon::create('group3')->asSvg(50) ?> + <?= Icon::create('group3')->asImg(50) ?> <?= _('Kontakte') ?> </a> <a href="<?= $controller->link_for('blubber/index/global') ?>"> - <?= Icon::create('globe')->asSvg(50) ?> + <?= Icon::create('globe')->asImg(50) ?> <?= _('Öffentlich') ?> </a> <? if (!$GLOBALS['perm']->have_perm('admin')) : ?> <a href="#" onclick="$('.file_select_possibilities').hide(); $('.course_blubber_composer').show(); return false;"> - <?= Icon::create('seminar')->asSvg(50) ?> + <?= Icon::create('seminar')->asImg(50) ?> <?= _('Veranstaltung') ?> </a> <? endif ?> @@ -67,10 +67,10 @@ </span> <a href="" onClick="$('#blubber_contacts').trigger('focus').select2('open'); return false;"> - <?= Icon::create('search')->asSvg(['class' => 'text-bottom']) ?> + <?= Icon::create('search')->asImg(['class' => 'text-bottom']) ?> </a> <a href="" onClick="$('#blubber_contacts').val(null).trigger('change'); return false;"> - <?= Icon::create('decline')->asSvg(['class' => 'text-bottom']) ?> + <?= Icon::create('decline')->asImg(['class' => 'text-bottom']) ?> </a> </div> <? endif ?> @@ -113,10 +113,10 @@ ->fireJSFunctionOnSelect('STUDIP.Blubber.Composer.vue.addUser')->render() ?> <a href="" onClick="$('input[name=search_user_id_parameter]').trigger('focus'); return false;"> - <?= Icon::create('search')->asSvg(['class' => 'text-bottom']) ?> + <?= Icon::create('search')->asImg(['class' => 'text-bottom']) ?> </a> <a href="" onClick="STUDIP.Blubber.Composer.vue.clearUsers(); return false;"> - <?= Icon::create('decline')->asSvg(['class' => 'text-bottom']) ?> + <?= Icon::create('decline')->asImg(['class' => 'text-bottom']) ?> </a> </div> </div> |
