typo error

removed comma after tag.
This commit is contained in:
aftercase 2021-07-30 21:35:39 +01:00
parent 8ba425f0fc
commit 3d59d22667

View file

@ -58,7 +58,7 @@ function sandwitch($str) {
} else {
$tagcolor = "tag is-info";
}
$output .= '<a href="/archive?q=' . trim($word) . '"><span class="' . $tagcolor . '">' . trim($word) . '</span>,</a>';
$output .= '<a href="/archive?q=' . trim($word) . '"><span class="' . $tagcolor . '">' . trim($word) . '</span></a>';
}
return $output;
}