From e2f1b8b1df5b3bfcafec158f3401fdb358fa2bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michaela=20Br=C3=BCckner?= <brueckner@data-quest.de> Date: Fri, 15 Oct 2021 14:05:35 +0200 Subject: [PATCH] "Zur Rangliste" im Profil wird nicht umrahmt, re #333 --- app/views/profile/widget-avatar.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/views/profile/widget-avatar.php b/app/views/profile/widget-avatar.php index ebf5e35b46c..157b74a1725 100644 --- a/app/views/profile/widget-avatar.php +++ b/app/views/profile/widget-avatar.php @@ -30,8 +30,9 @@ <? if ($score && $score_title): ?> <div class="minor"> <a href="<?= URLHelper::getLink('dispatch.php/score') ?>" title="<?= _('Zur Rangliste') ?>"> - <div><?= _('Stud.IP-Punkte') ?>: <?= number_format($score, 0, ',', '.') ?></div> - <div><?= _('Rang') ?>: <?= htmlReady($score_title) ?></div> + <?= _('Stud.IP-Punkte') ?>: <?= number_format($score, 0, ',', '.') ?> + <br /> + <?= _('Rang') ?>: <?= htmlReady($score_title) ?> </a> </div> <? endif; ?> -- GitLab