From 31654990b7cd2832c6641019908ce088e545a4f4 Mon Sep 17 00:00:00 2001
From: aftercase <74765798+aftercase@users.noreply.github.com>
Date: Mon, 12 Jul 2021 21:25:00 +0100
Subject: [PATCH] Fixed error
Fixed markup error in sandwich function.
---
includes/functions.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/includes/functions.php b/includes/functions.php
index dcde97a..d6c0f20 100644
--- a/includes/functions.php
+++ b/includes/functions.php
@@ -72,7 +72,7 @@ function sandwitch($str) {
} else {
$tagcolor = "tag is-info";
}
- $output .= '' . trim($word) . '';
+ $output .= '' . trim($word) . ',';
}
return $output;
}