summaryrefslogtreecommitdiff
path: root/src/application/views/view_topics.php
diff options
context:
space:
mode:
authorJonas Kohl2024-10-11 15:08:31 +0200
committerJonas Kohl2024-10-11 15:08:31 +0200
commit72061dac58ee44ebd5c26efacb00790ef11aa136 (patch)
treece1c2cc8cb435d02d168f12f064dd922f9ec6597 /src/application/views/view_topics.php
parent0fb99f2ebb773bbede609946cc1c19955d06b0be (diff)
Switch from Glyphicons to Fork Awesome
Diffstat (limited to 'src/application/views/view_topics.php')
-rw-r--r--src/application/views/view_topics.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application/views/view_topics.php b/src/application/views/view_topics.php
index a762f8c..8a94775 100644
--- a/src/application/views/view_topics.php
+++ b/src/application/views/view_topics.php
@@ -6,7 +6,7 @@ use mystic\forum\orm\UserPermissions;
if ($GLOBALS["currentUser"]?->hasPermission(UserPermissions::CREATE_OWN_TOPIC)):
?>
<p class="text-right">
-<a href="?_action=newtopic" class="btn btn-success"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span> <?= __("New topic") ?></a>
+<a href="?_action=newtopic" class="btn btn-success"><span class="fa fa-plus" aria-hidden="true"></span> <?= __("New topic") ?></a>
</p>
<?php endif; ?>
<div class="list-group">
@@ -14,7 +14,7 @@ if ($GLOBALS["currentUser"]?->hasPermission(UserPermissions::CREATE_OWN_TOPIC)):
<a class="list-group-item" href="?_action=viewtopic&amp;topic=<?= htmlentities(urlencode($topic->id)) ?>">
<h4 class="list-group-item-heading">
<?php if ($topic->isLocked): ?>
- <span class="glyphicon glyphicon-lock text-muted" aria-hidden="true"></span>
+ <span class="fa fa-lock text-muted" aria-hidden="true"></span>
<?php endif; ?>
<?= htmlentities($topic->title) ?>
</h4>