From d780bb75d42fe6e8c12f5e7fc82b50f005b37e92 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sun, 5 Jan 2020 22:18:06 +0100 Subject: [PATCH] issue: move photo icon before replies Most common parts last for more stable appearance. --- issue/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/issue/index.php b/issue/index.php index 3f665db..6aebf8e 100644 --- a/issue/index.php +++ b/issue/index.php @@ -82,15 +82,15 @@ while ($row = $query->fetch()) { showdate(array_slice(preg_split('/\D/', $row->updated), 0, 3)) ); } - if ($row->imagecount) { - print ' 📷'; - } if ($row->replycount) { printf(' %s %d', '🗨', $row->replycount ); } + if ($row->imagecount) { + print ' 📷'; + } if (isset($row->assign)) { print ' '.$row->assign.''; } -- 2.30.0