From da20926a97d488449fbd6355965cecd46feec14f Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 6 Nov 2014 16:11:29 +0100 Subject: [PATCH] Customvars: use new helper refs #7569 --- .../views/scripts/show/components/customvars.phtml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/monitoring/application/views/scripts/show/components/customvars.phtml b/modules/monitoring/application/views/scripts/show/components/customvars.phtml index d89260e95..aa2e479e4 100644 --- a/modules/monitoring/application/views/scripts/show/components/customvars.phtml +++ b/modules/monitoring/application/views/scripts/show/components/customvars.phtml @@ -1,8 +1,11 @@ customvars as $name => $value) { + printf( - "%s%s\n", + '%s%s' . "\n", $this->escape($name), - $this->escape($value) + $this->customvar($value) ); } +