Update Builder.php

I fixed, because it converting only quotes html for xml.
This commit is contained in:
hekia90 2020-10-10 21:16:11 +02:00 committed by GitHub
parent d763af36e0
commit 14940ed615
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ class Builder
return vsprintf("<apps:property name='%s' value='%s'/>", [
$key,
htmlentities($this->implode($value)),
htmlentities($this->implode($value), ENT_QUOTES | ENT_XML1),
]);
}