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_search_results.php | |
parent | 0fb99f2ebb773bbede609946cc1c19955d06b0be (diff) |
Switch from Glyphicons to Fork Awesome
Diffstat (limited to 'src/application/views/view_search_results.php')
-rw-r--r-- | src/application/views/view_search_results.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/application/views/view_search_results.php b/src/application/views/view_search_results.php index 55af213..93e36f7 100644 --- a/src/application/views/view_search_results.php +++ b/src/application/views/view_search_results.php @@ -14,14 +14,14 @@ use mystic\forum\utils\StringUtils; ?> <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 by %author% on %post_date% in %topic%", [ "author" => '<em>' . htmlentities($users[$post->authorId]?->displayName ?? __("unknown")) . '</em>', "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> @@ -29,7 +29,7 @@ use mystic\forum\utils\StringUtils; </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><?= __("No results for this search") ?></em> </div> <?php endif; ?> |