Issue 6394: The contact location has to be BBEncoded

This commit is contained in:
Michael 2019-01-06 21:04:10 +00:00
parent 9a4fc0f8bd
commit 7e19506435
10 changed files with 13 additions and 9 deletions

View file

@ -514,6 +514,10 @@ class Profile
$p['address'] = $p['location'];
}
if (isset($p['address'])) {
$p['address'] = BBCode::convert($p['address']);
}
if (isset($p['photo'])) {
$p['photo'] = ProxyUtils::proxifyUrl($p['photo'], false, ProxyUtils::SIZE_SMALL);
}