diff options
| author | Jonas Kohl | 2024-10-11 15:08:31 +0200 | 
|---|---|---|
| committer | Jonas Kohl | 2024-10-11 15:08:31 +0200 | 
| commit | 72061dac58ee44ebd5c26efacb00790ef11aa136 (patch) | |
| tree | ce1c2cc8cb435d02d168f12f064dd922f9ec6597 /src/application/views/view_user.php | |
| parent | 0fb99f2ebb773bbede609946cc1c19955d06b0be (diff) | |
Switch from Glyphicons to Fork Awesome
Diffstat (limited to 'src/application/views/view_user.php')
| -rw-r--r-- | src/application/views/view_user.php | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/application/views/view_user.php b/src/application/views/view_user.php index a38096f..c95b557 100644 --- a/src/application/views/view_user.php +++ b/src/application/views/view_user.php @@ -54,13 +54,13 @@ $emailPending = $isOwnProfile && $user->pendingEmail !== null;                  ?>                      <a href="?_action=viewtopic&topic=<?= htmlentities(urlencode($post->topicId)) ?>#post-<?= htmlentities(urlencode($post->id)) ?>" class="list-group-item">                          <?php if ($hasAttachments): ?> -                            <span class="badge"><span class="glyphicon glyphicon-paperclip"></span></span> +                            <span class="badge"><span class="fa fa-paperclip"></span></span>                          <?php endif; ?>                          <?= htmlentities(html_entity_decode(StringUtils::truncate(strip_tags(renderPost($post->content)), 100))) ?><br>                          <span class="text-muted"><?= __("posted on %post_date% in %topic%", [                              "post_date" => '<span class="_time">' . htmlentities($post->postDate->format("c")) . '</span>',                              "topic" => '<em>' . -                                ($topics[$post->topicId]?->isLocked ? '<span class="glyphicon glyphicon-lock text-muted" aria-hidden="true"></span> ' : '') . +                                ($topics[$post->topicId]?->isLocked ? '<span class="fa fa-lock text-muted" aria-hidden="true"></span> ' : '') .                                  htmlentities($topics[$post->topicId]?->title ?? "unknown") . '</em>',                          ]) ?></span>                      </a> @@ -73,7 +73,7 @@ $emailPending = $isOwnProfile && $user->pendingEmail !== null;      </div>  <?php else: ?>      <div class="well icon-well text-info margin-top margin-bottom"> -        <span class="glyphicon glyphicon-info-sign text-info" aria-hidden="true"></span> +        <span class="fa fa-info-circle text-info" aria-hidden="true"></span>          <em><?= __("This user has not posted anything yet") ?></em>      </div>  <?php endif; ?> |