6
2
Fork 0
espelhamento de https://github.com/friendica/friendica sincronizado 2025-09-01 21:11:11 +02:00
- TypeError: "Argument 1 passed to Friendica\Util\XML::escape() must be of the
  type string, null given, called in src/Util/XML.php line 171
Esse commit está contido em:
Roland Häder 2022-06-22 16:19:45 +02:00
commit d5441da49a
Assinado por: roland
ID da chave GPG: C82EDE5DDFA0BA77

Ver arquivo

@ -168,7 +168,7 @@ class XML
foreach ($attributes as $key => $value) {
$attribute = $doc->createAttribute($key);
$attribute->value = self::escape($value);
$attribute->value = self::escape($value ?? '');
$element->appendChild($attribute);
}
return $element;