Files
Piwigo/include/page_tail.php
gweltas 6575353922 Template modification
Split of the french language file


git-svn-id: http://piwigo.org/svn/trunk@351 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-02-07 11:50:26 +00:00

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');
?>