aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2018-09-27 17:26:44 -0400
committerPaul Duncan <pabs@pablotron.org>2018-09-27 17:26:44 -0400
commita682532f8b9f59915362d2fb24bc15596ea1cbef (patch)
tree6811e5cfc97d1b265aa19daf7b4a1f055d113316
parentc5f5795bef35f48b44d105168e7bbe353c71ecc8 (diff)
downloadluigi-template-a682532f8b9f59915362d2fb24bc15596ea1cbef.tar.bz2
luigi-template-a682532f8b9f59915362d2fb24bc15596ea1cbef.zip
php: h template: coerce to string
-rw-r--r--php/src/Template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/src/Template.php b/php/src/Template.php
index 8dcf944..a3522f7 100644
--- a/php/src/Template.php
+++ b/php/src/Template.php
@@ -526,7 +526,7 @@ class Filters {
self::$FILTERS = [
'h' => function($v) {
- return htmlspecialchars($v, ENT_QUOTES);
+ return htmlspecialchars((string) $v, ENT_QUOTES);
},
'u' => function($v) {