mirror of
https://github.com/sorenpeter/timeline.git
synced 2026-03-11 12:42:17 +00:00
TagCloud alls in lowercase to not have dublicates with diff case
This commit is contained in:
parent
9edae5a91e
commit
d55516b2c4
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ foreach ($twts as $twt) {
|
||||||
$tag_array = getTagsFromTwt($twt->content);
|
$tag_array = getTagsFromTwt($twt->content);
|
||||||
|
|
||||||
foreach ($tag_array as $tag) {
|
foreach ($tag_array as $tag) {
|
||||||
$tags[] = $tag[0];
|
$tags[] = strtolower($tag[0]); // Also convert all tags to lower case
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue