From 1796f2e9e3a0a72f89066c35b46751b72eaadf73 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Mon, 30 Dec 2019 09:54:02 +0100 Subject: [PATCH] issue: common icon glyphs for improved fallback Irrelevant after styling, but improves compatibility if unstyled: - RIGHT SPEECH BUBBLE is a common emoji available on at least android; - CAMERA is more specific for the expected usage, and similar to other popular sites such as Twitter. --- issue/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/issue/index.php b/issue/index.php index f5dead2..332179e 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