Remove leading space in displayed public tags in profile page
This commit is contained in:
parent
b7e43d3a48
commit
a2556e7c67
1 changed files with 2 additions and 1 deletions
|
@ -192,7 +192,8 @@ class Profile extends BaseProfile
|
||||||
|
|
||||||
if ($a->profile['pub_keywords']) {
|
if ($a->profile['pub_keywords']) {
|
||||||
$tags = [];
|
$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[] = [
|
$tags[] = [
|
||||||
'url' => '/search?tag=' . $tag_label,
|
'url' => '/search?tag=' . $tag_label,
|
||||||
'label' => Tag::TAG_CHARACTER[Tag::HASHTAG] . $tag_label,
|
'label' => Tag::TAG_CHARACTER[Tag::HASHTAG] . $tag_label,
|
||||||
|
|
Loading…
Reference in a new issue