From 1bbddc858b16f392d9ca3475e9f162f914c56c9d Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 30 Dec 2019 09:24:38 +0100 Subject: [PATCH] issue: unicode characters of indicator icons Replace ASCII placeholders by semantic equivalents, which can be styled by custom fonts to maintain full client compatibility. --- issue/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/issue/index.php b/issue/index.php index 6b34216..f5dead2 100644 --- a/issue/index.php +++ b/issue/index.php @@ -80,11 +80,11 @@ while ($row = $query->fetch()) { ); } if ($row->imagecount) { - print ' *'; + print ' 🖼'; } if ($row->replycount) { printf(' %s %d', - '+', + '🗩', $row->replycount ); } -- 2.30.0