I am trying to do an error suppression without the error_reporting(NULL) while adding values to a variable that may not be set yet. For example:
{$var.1 = $var.1 + 10}
In this case $var.1 isn't defined yet, in PHP I can use @ infront of the line to ignore error. How can i do this on Smarty?