From 3d59d226675740d1ebac966f551e6ebfedeb8d6b Mon Sep 17 00:00:00 2001 From: aftercase <74765798+aftercase@users.noreply.github.com> Date: Fri, 30 Jul 2021 21:35:39 +0100 Subject: [PATCH] typo error removed comma after tag. --- includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions.php b/includes/functions.php index 682a04b..1c78118 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -58,7 +58,7 @@ function sandwitch($str) { } else { $tagcolor = "tag is-info"; } - $output .= '' . trim($word) . ','; + $output .= '' . trim($word) . ''; } return $output; }