mirror of
https://github.com/friendica/friendica
synced 2025-04-29 12:24:24 +02:00
Issue-6329: Prevent double encoding
This commit is contained in:
parent
7357de411d
commit
f274357ad6
2 changed files with 3 additions and 5 deletions
|
@ -512,10 +512,8 @@ class Profile
|
|||
$p['about'] = BBCode::convert($p['about']);
|
||||
}
|
||||
|
||||
if (isset($p['address'])) {
|
||||
$p['address'] = BBCode::convert($p['address']);
|
||||
} elseif (isset($p['location'])) {
|
||||
$p['address'] = BBCode::convert($p['location']);
|
||||
if (empty($p['address']) && !empty($p['location'])) {
|
||||
$p['address'] = $p['location'];
|
||||
}
|
||||
|
||||
if (isset($p['photo'])) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue