If profile fullname is 0 chars use nickname

This commit is contained in:
Mikael Nordfeldth 2016-02-17 22:43:45 +01:00
parent ade4518ae4
commit d6bf90cfb7
1 changed files with 1 additions and 1 deletions

View File

@ -345,7 +345,7 @@ class ProfilesettingsAction extends SettingsAction
$this->scoped->nickname = $nickname;
$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->bio = $bio;
$this->scoped->location = $location;