Closed GoogleCodeExporter closed 9 years ago
the fix will effect
108 if ($defaultValue === null) {
109 $this->safeVariableResult = 'null';
111 $this->safeVariableResult = ($defaultValue === true) ? 'true' : 'false';
113 $this->safeVariableResult = $defaultValue;
115 $this->safeVariableResult = "'{$defaultValue}'";
117 $this->safeVariableResult = $defaultValue;
and
1319 return " ( isset({$result}) ? {$result} : " . $this->safeVariableResult .
" ) ";
we have to make it static for all to be used in the rendered templates
Original comment by ahmadt89
on 17 Nov 2011 at 2:28
Original comment by darkredz
on 10 Mar 2012 at 3:35
Original issue reported on code.google.com by
ahmadt89
on 17 Nov 2011 at 2:06