Ignore:
Timestamp:
Feb 29, 2008, 2:25:13 AM (17 years ago)
Author:
rvelices
Message:

picture, footer and picture modify template migration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/page_tail.php

    r2201 r2227  
    33// | PhpWebGallery - a PHP based picture gallery                           |
    44// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
     5// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
    66// +-----------------------------------------------------------------------+
    77// | file          : $Id$
     
    3232    'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '',
    3333    'PHPWG_URL' => PHPWG_URL,
    34 
    35     'L_TITLE_MAIL' => urlencode(l10n('title_send_mail')),
    3634    ));
    3735
     
    4038if (!is_a_guest())
    4139{
    42   $template->assign_block_vars(
    43     'contact',
    44     array(
    45       'MAIL' => get_webmaster_mail_address()
    46       )
     40  $template->assign(
     41    'CONTACT_MAIL', get_webmaster_mail_address()
    4742    );
    4843}
     
    7267}
    7368
    74 if ( !empty($debug_vars) )
    75 {
    76   $template->assign_block_vars('debug',$debug_vars );
    77 }
     69$template->assign('debug', $debug_vars );
    7870
    7971trigger_action('loc_end_page_tail');
     
    8173// Generate the page
    8274//
    83 $template->parse('tail');
    84 
    85 $template->p();
     75$template->pparse('tail');
    8676?>
Note: See TracChangeset for help on using the changeset viewer.