Add correct null handling to templater

develop
Sven Slootweg 12 years ago
parent 5a3bacf2e7
commit 6dbbfb4ebd

@ -680,6 +680,10 @@ class TemplateIfElement extends TemplateSyntaxElement
{ {
$b = false; $b = false;
} }
elseif($b == "null")
{
$b = null;
}
switch($this->operator) switch($this->operator)
{ {

Loading…
Cancel
Save