Files
smarty/libs/sysplugins/method.enablecompilecheck.php

23 lines
273 B
PHP
Raw Normal View History

<?php
/**
* Smarty method enableCompileCheck
*
* Enable compile checking
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable compile checking
*/
function enableCompileCheck($smarty)
{
$smarty->compile_check = true;
return;
}
?>