We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 782a9ab commit afe9c6dCopy full SHA for afe9c6d
src/Liquid/AbstractBlock.php
@@ -53,7 +53,7 @@ public function parse(array &$tokens)
53
{
54
$startRegexp = new Regexp('/^' . Liquid::$config['TAG_START'] . '/');
55
$tagRegexp = new Regexp('/^' . Liquid::$config['TAG_START'] . Liquid::$config['WHITESPACE_CONTROL'] . '?\s*(\w+)\s*(.*?)' . Liquid::$config['WHITESPACE_CONTROL'] . '?' . Liquid::$config['TAG_END'] . '$/s');
56
- $variableStartRegexp = new Regexp('/^' . Liquid::$config['VARIABLE_START'] . '/');
+ $variableStartRegexp = new Regexp('/^' . $this->config['VARIABLE_START'] . '/');
57
58
$this->nodelist = array();
59
0 commit comments