diff options
author | Mario <mario@mariovavti.com> | 2024-08-02 08:50:50 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-08-02 08:50:50 +0000 |
commit | c793cea2f036411086180420f9dc43071bafed4e (patch) | |
tree | 11eb80c15b465d8a83dca68ffd370624ac97e222 /include/text.php | |
parent | 4e19f1c8be6d7919839fb73e11e5a3929673b78e (diff) | |
download | volse-hubzilla-c793cea2f036411086180420f9dc43071bafed4e.tar.gz volse-hubzilla-c793cea2f036411086180420f9dc43071bafed4e.tar.bz2 volse-hubzilla-c793cea2f036411086180420f9dc43071bafed4e.zip |
fa2bi: catch some remains
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/text.php b/include/text.php index 66725a8da..137622b7d 100644 --- a/include/text.php +++ b/include/text.php @@ -1652,7 +1652,7 @@ function format_hashtags(&$item) { if($s) $s .= ' '; - $s .= '<span class="badge rounded-pill bg-info"><i class="fa fa-hashtag"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span>'; + $s .= '<span class="badge rounded-pill bg-info"><i class="bi bi-hash"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span>'; } } @@ -1675,7 +1675,7 @@ function format_mentions(&$item) { continue; if($s) $s .= ' '; - $s .= '<span class="badge rounded-pill bg-success"><i class="fa fa-at"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span>'; + $s .= '<span class="badge rounded-pill bg-success"><i class="bi bi-at"></i> <a class="text-white" href="' . zid($t['url']) . '" >' . $term . '</a></span>'; } } @@ -3266,7 +3266,7 @@ function getIconFromType($type) { } if(! $iconFromType) { - $iconFromType = 'fa-file-o'; + $iconFromType = 'bi-file-earmark'; } |