*** empty log message ***

This commit is contained in:
andrey
2002-02-27 22:35:34 +00:00
parent e3556e0c0b
commit 8a24a176d2
4 changed files with 18 additions and 16 deletions

View File

@@ -17,15 +17,15 @@ function smarty_function_eval($params, &$this)
return;
}
$this->_compile_template("eval_var",$var,$source);
$this->_compile_template("evaluated template", $var, $source);
if (!empty($assign)) {
ob_start();
eval('?>'.$source);
$this->assign($assign,ob_get_contents());
eval('?>' . $source);
$this->assign($assign, ob_get_contents());
ob_end_clean();
} else {
eval('?>'.$source);
eval('?>' . $source);
}
}