smarty.conf 279 Bytes
<?php
	require_once('Smarty/libs/Smarty.class.php');
	$o_smarty=new Smarty();
//	$o_smarty->caching = false;
//	$o_smarty->clear_all_cache();
	$o_smarty->template_dir='./templates/';
	$o_smarty->compile_dir='./templates_c/';

	$o_smarty->assign('PHP_DISABLED',$PHP_DISABLED);

?>