summaryrefslogtreecommitdiff
path: root/src/application/views/view_topiclog.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_topiclog.php
parent0fb99f2ebb773bbede609946cc1c19955d06b0be (diff)
Switch from Glyphicons to Fork Awesome
Diffstat (limited to 'src/application/views/view_topiclog.php')
-rw-r--r--src/application/views/view_topiclog.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/application/views/view_topiclog.php b/src/application/views/view_topiclog.php
index be3f78d..291dada 100644
--- a/src/application/views/view_topiclog.php
+++ b/src/application/views/view_topiclog.php
@@ -33,7 +33,7 @@ if ($postAuthor === null) {
<div class="media-body">
<?php if ($logMessage->type === TopicLogMessage::LOCKED): ?>
<div class="well icon-well text-info">
- <span class="glyphicon glyphicon-lock text-info" aria-hidden="true"></span>
+ <span class="fa fa-lock text-info" aria-hidden="true"></span>
<em><?= __("%user% locked this topic", [
"user" => $user,
]) ?></em>
@@ -42,7 +42,7 @@ if ($postAuthor === null) {
</div>
<?php elseif ($logMessage->type === TopicLogMessage::UNLOCKED): ?>
<div class="well icon-well text-success">
- <span class="glyphicon glyphicon-globe text-success" aria-hidden="true"></span>
+ <span class="fa fa-unlock text-success" aria-hidden="true"></span>
<em><?= __("%user% unlocked this topic", [
"user" => $user,
]) ?></em>
@@ -51,7 +51,7 @@ if ($postAuthor === null) {
</div>
<?php elseif ($logMessage->type === TopicLogMessage::TITLE_CHANGED): ?>
<div class="well icon-well text-info">
- <span class="glyphicon glyphicon-pencil text-info" aria-hidden="true"></span>
+ <span class="fa fa-pencil text-info" aria-hidden="true"></span>
<em><?= __("%user% changed the title of this topic from %old_title% to %new_title%", [
"user" => $user,
"old_title" => '<strong>' . htmlentities($logMessage->params["old_value"] ?? __("unknown")) . '</strong>',