X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FTemplate%2FTwigNodeVisitor.php;fp=web%2Fcore%2Flib%2FDrupal%2FCore%2FTemplate%2FTwigNodeVisitor.php;h=8a5dc05d75084a5242064daece5b060e0387abac;hp=1ebfa57de92aac065b397b158fdfcaacab0da9e6;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/core/lib/Drupal/Core/Template/TwigNodeVisitor.php b/web/core/lib/Drupal/Core/Template/TwigNodeVisitor.php index 1ebfa57de..8a5dc05d7 100644 --- a/web/core/lib/Drupal/Core/Template/TwigNodeVisitor.php +++ b/web/core/lib/Drupal/Core/Template/TwigNodeVisitor.php @@ -33,7 +33,7 @@ class TwigNodeVisitor extends \Twig_BaseNodeVisitor { return $node; } $class = get_class($node); - $line = $node->getLine(); + $line = $node->getTemplateLine(); return new $class( new \Twig_Node_Expression_Function('render_var', new \Twig_Node([$node->getNode('expr')]), $line), $line @@ -46,7 +46,8 @@ class TwigNodeVisitor extends \Twig_BaseNodeVisitor { // Use our own escape filter that is SafeMarkup aware. $node->getNode('filter')->setAttribute('value', 'drupal_escape'); - // Store that we have a filter active already that knows how to deal with render arrays. + // Store that we have a filter active already that knows + // how to deal with render arrays. $this->skipRenderVarFunction = TRUE; } }