]> git.mxchange.org Git - friendica.git/commitdiff
Fixed:
authorRoland Häder <roland@mxchange.org>
Wed, 22 Jun 2022 14:19:45 +0000 (16:19 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 22 Jun 2022 14:20:26 +0000 (16:20 +0200)
- 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

src/Util/XML.php

index 095d5cad71d22ef9758ce4d12e3032e0276c1658..7d1827763356305350d564ff6deeb3df24bd00b8 100644 (file)
@@ -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;