mirror of
https://github.com/friendica/friendica
synced 2025-01-18 15:04:27 +00:00
Accept "null" as value for the "about" text
This commit is contained in:
parent
269c67a185
commit
c96b28ee63
1 changed files with 1 additions and 1 deletions
|
@ -854,7 +854,7 @@ class Profile
|
||||||
* @param string $language
|
* @param string $language
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function addResponsibleRelayContact(string $about, int $parent_uid = null, int $account_type, string $language): string
|
public static function addResponsibleRelayContact(string $about = null, int $parent_uid = null, int $account_type, string $language): ?string
|
||||||
{
|
{
|
||||||
if (($account_type != User::ACCOUNT_TYPE_RELAY) || empty($parent_uid)) {
|
if (($account_type != User::ACCOUNT_TYPE_RELAY) || empty($parent_uid)) {
|
||||||
return $about;
|
return $about;
|
||||||
|
|
Loading…
Reference in a new issue