mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #48030 from nextcloud/fix/dav-cast-params-to-string
This commit is contained in:
commit
388618bd44
1 changed files with 1 additions and 1 deletions
|
|
@ -133,7 +133,7 @@ class AppleProvisioningPlugin extends ServerPlugin {
|
|||
$filename = $userId . '-' . AppleProvisioningNode::FILENAME;
|
||||
|
||||
$xmlSkeleton = $this->getTemplate();
|
||||
$body = vsprintf($xmlSkeleton, array_map(function ($v) {
|
||||
$body = vsprintf($xmlSkeleton, array_map(function (string $v) {
|
||||
return \htmlspecialchars($v, ENT_XML1, 'UTF-8');
|
||||
}, [
|
||||
$description,
|
||||
|
|
|
|||
Loading…
Reference in a new issue