X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FTemplateParser.php;h=75494b1ed8eef2927ced9af5596895d87d67570c;hb=5f9e9f4e077ffe7b02c2b0236bd2dd61ee56074e;hp=dc7d31e522077cb1ee778abc70fdafa58e11baaf;hpb=2252838b4a0ea09d393c26281eae62ee8c5cda98;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/TemplateParser.php b/includes/TemplateParser.php index dc7d31e522..75494b1ed8 100644 --- a/includes/TemplateParser.php +++ b/includes/TemplateParser.php @@ -41,9 +41,7 @@ class TemplateParser { /** * @var int Compilation flags passed to LightnCandy */ - // Do not add more flags here without discussion. - // If you do add more flags, be sure to update unit tests as well. - protected $compileFlags = LightnCandy::FLAG_ERROR_EXCEPTION; + protected $compileFlags; /** * @param string|null $templateDir @@ -52,6 +50,10 @@ class TemplateParser { public function __construct( $templateDir = null, $forceRecompile = false ) { $this->templateDir = $templateDir ?: __DIR__ . '/templates'; $this->forceRecompile = $forceRecompile; + + // Do not add more flags here without discussion. + // If you do add more flags, be sure to update unit tests as well. + $this->compileFlags = LightnCandy::FLAG_ERROR_EXCEPTION | LightnCandy::FLAG_MUSTACHELOOKUP; } /** @@ -67,7 +69,7 @@ class TemplateParser { } /** - * Constructs the location of the the source Mustache template + * Constructs the location of the source Mustache template * @param string $templateName The name of the template * @return string * @throws UnexpectedValueException If $templateName attempts upwards directory traversal