diff options
Diffstat (limited to 'src/application/views/view_topiclog.php')
-rw-r--r-- | src/application/views/view_topiclog.php | 6 |
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>', |