Fixed error

Fixed markup error in sandwich function.
This commit is contained in:
aftercase 2021-07-12 21:25:00 +01:00
parent 2c64716e3b
commit 31654990b7

View file

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