TagCloud alls in lowercase to not have dublicates with diff case

This commit is contained in:
sørenpeter 2024-12-08 19:57:45 +01:00
parent 9edae5a91e
commit d55516b2c4

View file

@ -10,7 +10,7 @@ foreach ($twts as $twt) {
$tag_array = getTagsFromTwt($twt->content);
foreach ($tag_array as $tag) {
$tags[] = $tag[0];
$tags[] = strtolower($tag[0]); // Also convert all tags to lower case
}
}