mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-18 23:15:21 +02:00
23 lines
288 B
PHP
23 lines
288 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method EnableCompileCheck
|
|
*
|
|
* Enable compile checking
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Enable compile checking
|
|
*/
|
|
function Smarty_Method_EnableCompileCheck($smarty)
|
|
{
|
|
$smarty->compile_check = true;
|
|
return;
|
|
}
|
|
|
|
?>
|