Хранилища Subversion ant

Редакция

Содержимое файла | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
304 alex-w 1
<?php
2
 
3
/**
4
* Smarty method disableCompileCheck
5
*
6
* Disable compile checking
7
*
8
* @package Smarty
9
* @subpackage SmartyMethod
10
* @author Uwe Tews
11
*/
12
 
13
/**
14
* Disable compile checking
15
*
16
* @param object $smarty
17
*/
18
function DisableCompileCheck($smarty)
19
{
20
    $smarty->compile_check = false;
21
    return;
22
}
23
 
24
?>