I just realized that any variables that are not substituted in my vlib-templates are now (4.1.0) printed in html with their full syntax so lets say I have
username:<br/>
<input type="text" name="username" value="{tmpl_var name=username}/>
and I do NOT substitute username with a value in my controller then I get the following output in my browser:
username:
{tmpl_var name=username}
This was NOT the case in the prior version (4.0.2.3). It would print NOTHING which was very convenient.
Now I have to substitute all insiginificant variables with an empty value so nothing gets printed which complicates things a lot.
Was this intended?
greets, getagrip