diff -r ffa3a4938513 -r 5882f0eebb34 includes/template.php --- a/includes/template.php Sat Dec 19 16:06:29 2009 -0500 +++ b/includes/template.php Mon Dec 21 15:41:05 2009 -0500 @@ -3305,7 +3305,7 @@ * Assigns an array of string values to the template. Strings can be accessed from the template by inserting {KEY_NAME} in the template file. * @param $vars array */ - function assign_vars($vars) + function assign_vars($vars, $_ignored = false) { if(is_array($this->tpl_strings)) $this->tpl_strings = array_merge($this->tpl_strings, $vars); @@ -3350,7 +3350,7 @@ * Assigns an array of string values to the template. Strings can be accessed from the template by inserting {KEY_NAME} in the template file. * @param $vars array */ - function assign_vars($vars) + function assign_vars($vars, $_ignored = false) { if(is_array($this->tpl_strings)) $this->tpl_strings = array_merge($this->tpl_strings, $vars);