remove unneeded error suppression

This commit is contained in:
uwe.tews@googlemail.com
2011-09-21 22:54:08 +00:00
parent 985b575e97
commit 95ab01f99f

View File

@@ -174,8 +174,7 @@ class Smarty_Internal_Data {
if (!isset($this->tpl_vars[$tpl_var])) { if (!isset($this->tpl_vars[$tpl_var])) {
$this->tpl_vars[$tpl_var] = new Smarty_variable(); $this->tpl_vars[$tpl_var] = new Smarty_variable();
} }
// FIXME u.tews what's this @silence doing here? if (!is_array($this->tpl_vars[$tpl_var]->value)) {
if (!@is_array($this->tpl_vars[$tpl_var]->value)) {
settype($this->tpl_vars[$tpl_var]->value, 'array'); settype($this->tpl_vars[$tpl_var]->value, 'array');
} }
if ($merge && is_array($value)) { if ($merge && is_array($value)) {