[ExtendedProfile] Fix misuse of XMLOutputter
Argument 1 passed to xmloutputter::text() must be of the type string, null given, called in /srv/gnusocial/plugins/ExtendedProfile/lib/extendedprofilewidget.php on line 556
This commit is contained in:
@@ -553,7 +553,7 @@ class ExtendedProfileWidget extends Form
|
||||
case 'text':
|
||||
case 'textarea':
|
||||
case 'person':
|
||||
$this->out->text($this->ext->getTextValue($name));
|
||||
$this->out->text($this->ext->getTextValue($name) ?? '');
|
||||
break;
|
||||
case 'custom-text':
|
||||
case 'custom-textarea':
|
||||
|
Reference in New Issue
Block a user