|
From: Paul S. O. <ps...@us...> - 2001-10-16 14:38:16
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv14507/includes
Modified Files:
page_header.php page_tail.php
Log Message:
Topic review changes + updates
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -r1.54 -r1.55
*** page_header.php 2001/10/14 18:20:40 1.54
--- page_header.php 2001/10/16 11:12:32 1.55
***************
*** 57,63 ****
// Parse and show the overall header.
//
! $template->set_filenames(array(
! "overall_header" => "overall_header.tpl")
! );
//
--- 57,72 ----
// Parse and show the overall header.
//
! if( empty($gen_simple_header) )
! {
! $template->set_filenames(array(
! "overall_header" => "overall_header.tpl")
! );
! }
! else
! {
! $template->set_filenames(array(
! "overall_header" => "simple_header.tpl")
! );
! }
//
Index: page_tail.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_tail.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** page_tail.php 2001/08/30 22:20:23 1.20
--- page_tail.php 2001/10/16 11:12:32 1.21
***************
*** 34,40 ****
$current_time = time();
! $template->set_filenames(array(
! "overall_footer" => "overall_footer.tpl")
! );
$template->assign_vars(array(
--- 34,49 ----
$current_time = time();
! if( empty($gen_simple_header) )
! {
! $template->set_filenames(array(
! "overall_footer" => "overall_footer.tpl")
! );
! }
! else
! {
! $template->set_filenames(array(
! "overall_footer" => "simple_footer.tpl")
! );
! }
$template->assign_vars(array(
|