11 lines
132 B
PHP
11 lines
132 B
PHP
<?php
|
|
|
|
function smarty_function_flush($params, $template)
|
|
{
|
|
echo ob_get_clean();
|
|
// flush();
|
|
ob_start();
|
|
|
|
return;
|
|
}
|