mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Minor version messup
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2484 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
ff1d8ca150
commit
8d0445e1f0
1 changed files with 7 additions and 18 deletions
|
@ -28,27 +28,16 @@ if ( !defined('IN_PHPBB') )
|
|||
//
|
||||
// Show the overall footer.
|
||||
//
|
||||
$current_time = time();
|
||||
|
||||
$template->set_filenames(array(
|
||||
"page_footer" => "admin/page_footer.tpl")
|
||||
'page_footer' => 'admin/page_footer.tpl')
|
||||
);
|
||||
|
||||
$template->assign_vars(array(
|
||||
"PHPBB_VERSION" => "2.0 " . $board_config['version'],
|
||||
"TRANSLATION_INFO" => $lang['TRANSLATION_INFO'])
|
||||
'PHPBB_VERSION' => '2' . $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);
|
||||
$template->pparse('page_footer');
|
||||
|
||||
//
|
||||
// Close our DB connection.
|
||||
|
@ -73,10 +62,10 @@ if( $do_gzip_compress )
|
|||
$gzip_contents = gzcompress($gzip_contents, 9);
|
||||
$gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4);
|
||||
|
||||
echo "\x1f\x8b\x08\x00\x00\x00\x00\x00";
|
||||
echo '\x1f\x8b\x08\x00\x00\x00\x00\x00';
|
||||
echo $gzip_contents;
|
||||
echo pack("V", $gzip_crc);
|
||||
echo pack("V", $gzip_size);
|
||||
echo pack('V', $gzip_crc);
|
||||
echo pack('V', $gzip_size);
|
||||
}
|
||||
|
||||
exit;
|
||||
|
|
Loading…
Add table
Reference in a new issue