Issue 5436: Don't store tags that are too long

This commit is contained in:
Michael 2018-08-06 17:11:40 +00:00
parent c032011143
commit 3f612e0641
1 changed files with 3 additions and 1 deletions

View File

@ -1471,7 +1471,9 @@ class PortableContact
$tags = [];
foreach ($data['tags'] as $tag) {
$tag = mb_strtolower($tag);
$tags[$tag] = $tag;
if (count($tag) < 100) {
$tags[$tag] = $tag;
}
}
foreach ($tags as $tag) {