mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
Split of the french language file git-svn-id: http://piwigo.org/svn/trunk@351 68402e56-0260-453c-a942-63ccdbb3a9ee
26 lines
500 B
PHP
26 lines
500 B
PHP
<?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');
|
|
?>
|