Changeset 2227 for trunk/include/page_tail.php
- Timestamp:
- Feb 29, 2008, 2:25:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/page_tail.php
r2201 r2227 3 3 // | PhpWebGallery - a PHP based picture gallery | 4 4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | 5 // | Copyright (C) 2003-200 7PhpWebGallery Team - http://phpwebgallery.net |5 // | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | file : $Id$ … … 32 32 'VERSION' => $conf['show_version'] ? PHPWG_VERSION : '', 33 33 'PHPWG_URL' => PHPWG_URL, 34 35 'L_TITLE_MAIL' => urlencode(l10n('title_send_mail')),36 34 )); 37 35 … … 40 38 if (!is_a_guest()) 41 39 { 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() 47 42 ); 48 43 } … … 72 67 } 73 68 74 if ( !empty($debug_vars) ) 75 { 76 $template->assign_block_vars('debug',$debug_vars ); 77 } 69 $template->assign('debug', $debug_vars ); 78 70 79 71 trigger_action('loc_end_page_tail'); … … 81 73 // Generate the page 82 74 // 83 $template->parse('tail'); 84 85 $template->p(); 75 $template->pparse('tail'); 86 76 ?>
Note: See TracChangeset
for help on using the changeset viewer.