Parcourir la source

Fix potential problem where parsers array is not initialized when template string is parsed

Nathaniel van Diepen il y a 7 ans
Parent
commit
55077031cd
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. 4 0
      Data/template.class.php

+ 4 - 0
Data/template.class.php

@@ -273,6 +273,10 @@
 			return $output;
 		}
 		public static function parse(string $template, $data) : string{
+			if(is_null(static::$parsers)){
+				// Force parsers to be added
+				new Template(uuid(), $template);
+			}
 			$ignored = [];
 			$output = $template;
 			// Handle {#ignore code}