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

View file

@ -1471,8 +1471,10 @@ class PortableContact
$tags = [];
foreach ($data['tags'] as $tag) {
$tag = mb_strtolower($tag);
if (count($tag) < 100) {
$tags[$tag] = $tag;
}
}
foreach ($tags as $tag) {
DBA::insert('gserver-tag', ['gserver-id' => $gserver['id'], 'tag' => $tag], true);