|
From: Paul S. O. <ps...@us...> - 2002-04-04 15:35:03
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv20193/admin
Modified Files:
Tag: phpBB-2_0_0
page_footer_admin.php
Log Message:
Minor version messup
Index: page_footer_admin.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/page_footer_admin.php,v
retrieving revision 1.9
retrieving revision 1.9.2.1
diff -C2 -r1.9 -r1.9.2.1
*** page_footer_admin.php 18 Mar 2002 14:54:25 -0000 1.9
--- page_footer_admin.php 4 Apr 2002 14:47:18 -0000 1.9.2.1
***************
*** 29,53 ****
// Show the overall footer.
//
- $current_time = time();
-
$template->set_filenames(array(
! "page_footer" => "admin/page_footer.tpl")
);
$template->assign_vars(array(
! "PHPBB_VERSION" => "2.0 " . $board_config['version'],
! "TRANSLATION_INFO" => $lang['TRANSLATION_INFO'])
);
! $template->pparse("page_footer");
!
! //
! // Output page creation time
! //
! $mtime = microtime();
! $mtime = explode(" ",$mtime);
! $mtime = $mtime[1] + $mtime[0];
! $endtime = $mtime;
! $totaltime = ($endtime - $starttime);
//
--- 29,42 ----
// Show the overall footer.
//
$template->set_filenames(array(
! 'page_footer' => 'admin/page_footer.tpl')
);
$template->assign_vars(array(
! 'PHPBB_VERSION' => '2' . $board_config['version'],
! 'TRANSLATION_INFO' => $lang['TRANSLATION_INFO'])
);
! $template->pparse('page_footer');
//
***************
*** 74,81 ****
$gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4);
! echo "\x1f\x8b\x08\x00\x00\x00\x00\x00";
echo $gzip_contents;
! echo pack("V", $gzip_crc);
! echo pack("V", $gzip_size);
}
--- 63,70 ----
$gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4);
! echo '\x1f\x8b\x08\x00\x00\x00\x00\x00';
echo $gzip_contents;
! echo pack('V', $gzip_crc);
! echo pack('V', $gzip_size);
}
|