forked from GNUsocial/gnu-social
If profile fullname is 0 chars use nickname
This commit is contained in:
parent
ade4518ae4
commit
d6bf90cfb7
@ -345,7 +345,7 @@ class ProfilesettingsAction extends SettingsAction
|
|||||||
$this->scoped->nickname = $nickname;
|
$this->scoped->nickname = $nickname;
|
||||||
$this->scoped->profileurl = common_profile_url($this->scoped->getNickname());
|
$this->scoped->profileurl = common_profile_url($this->scoped->getNickname());
|
||||||
}
|
}
|
||||||
$this->scoped->fullname = $fullname;
|
$this->scoped->fullname = (mb_strlen($fullname)>0 ? $fullname : $this->scoped->nickname);
|
||||||
$this->scoped->homepage = $homepage;
|
$this->scoped->homepage = $homepage;
|
||||||
$this->scoped->bio = $bio;
|
$this->scoped->bio = $bio;
|
||||||
$this->scoped->location = $location;
|
$this->scoped->location = $location;
|
||||||
|
Loading…
Reference in New Issue
Block a user