diff --git a/src/Module/Profile/Profile.php b/src/Module/Profile/Profile.php index 6b7da3d71..5c0a082dc 100644 --- a/src/Module/Profile/Profile.php +++ b/src/Module/Profile/Profile.php @@ -192,7 +192,8 @@ class Profile extends BaseProfile if ($a->profile['pub_keywords']) { $tags = []; - foreach (explode(',', $a->profile['pub_keywords']) as $tag_label) { + // Separator is defined in Module\Settings\Profile\Index::cleanKeywords + foreach (explode(', ', $a->profile['pub_keywords']) as $tag_label) { $tags[] = [ 'url' => '/search?tag=' . $tag_label, 'label' => Tag::TAG_CHARACTER[Tag::HASHTAG] . $tag_label,