mirror of
https://github.com/opdavies/gmail-filter-builder.git
synced 2025-05-10 22:16:15 +01:00
Ensure characters are converted
This commit is contained in:
parent
761eba6203
commit
55ba13fdac
1 changed files with 4 additions and 1 deletions
|
@ -66,6 +66,9 @@ class Builder
|
|||
$value = collect($value)->implode('|');
|
||||
}
|
||||
|
||||
return "<apps:property name='{$key}' value='{$value}'/>";
|
||||
return vsprintf("<apps:property name='%s' value='%s'/>", [
|
||||
$key,
|
||||
htmlentities($value),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue