diff --git a/ext/tag_list/theme.php b/ext/tag_list/theme.php index e963a337..578b6873 100644 --- a/ext/tag_list/theme.php +++ b/ext/tag_list/theme.php @@ -116,6 +116,9 @@ class TagListTheme extends Themelet { } protected function ars($tag, $tags) { + // FIXME: a better fix would be to make sure the inputs are correct + $tag = strtolower($tag); + $tags = array_map("strtolower", $tags); $html = ""; $html .= " ("; $html .= $this->get_add_link($tags, $tag);