Changeset 349


Ignore:
Timestamp:
Feb 6, 2004, 12:16:54 AM (20 years ago)
Author:
z0rglub
Message:
  • adding file header
  • echoing $output var
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/release-1_3/include/page_tail.php

    r290 r349  
    11<?php
     2/***************************************************************************
     3 *                              page_footer.php                            *
     4 *                            -------------------                          *
     5 *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
     6 *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
     7 *                                                                         *
     8 *   $Id$
     9 *                                                                         *
     10 ***************************************************************************
     11
     12 ***************************************************************************
     13 *                                                                         *
     14 *   This program is free software; you can redistribute it and/or modify  *
     15 *   it under the terms of the GNU General Public License as published by  *
     16 *   the Free Software Foundation;                                         *
     17 *                                                                         *
     18 ***************************************************************************/
     19
    220$handle = $vtp->Open( './template/'.$user['template'].'/footer.vtp' );
    3 
    421//------------------------------------------------------------- generation time
    522$time = get_elapsed_time( $t2, get_moment() );
     
    926$vtp->setGlobalVar( $handle, 'version', $conf['version'] );
    1027$vtp->setGlobalVar( $handle, 'site_url', $conf['site_url'] );
    11 $vtp->setVarF( $handle, 'footer', './template/'.$user['template'].'/footer.htm' );
     28$vtp->setVarF( $handle, 'footer',
     29               './template/'.$user['template'].'/footer.htm' );
    1230
    1331//
     
    1533//
    1634
    17 $code = $vtp->Display( $handle, 0 );
    18 echo $code;
     35$output.= $vtp->Display( $handle, 0 );
     36echo $output;
    1937?>
Note: See TracChangeset for help on using the changeset viewer.