moved _fetch_resource_info and _parse_resource_name back into Smarty.class.php

renamed smarty_include and smarty_eval wrappers to _include and _eval
This commit is contained in:
messju
2003-07-23 16:14:47 +00:00
parent c97878d7fe
commit f66b646479
11 changed files with 167 additions and 193 deletions

View File

@@ -32,7 +32,7 @@ function smarty_function_eval($params, &$smarty)
$smarty->_compile_source('evaluated template', $params['var'], $_var_compiled);
ob_start();
$smarty->smarty_eval('?>' . $_var_compiled);
$smarty->_eval('?>' . $_var_compiled);
$_contents = ob_get_contents();
ob_end_clean();