blob: e960ab983d1dcdf7fe32e35bbf3f335ab85ccb47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
$template->set_filenames(array('tail'=>'footer.tpl'));
//------------------------------------------------------------- generation time
$time = get_elapsed_time( $t2, get_moment() );
$template->assign_vars(array(
'L_GEN_TIME' => $lang['generation_time'],
'S_TIME' => $time,
'S_VERSION' => $conf['version'],
'U_SITE' => add_session_id( $conf['site_url'] )
)
);
if (DEBUG)
{
$template->assign_block_vars('debug', array());
}
//
// Generate the page
//
$template->pparse('tail');
?>
|