diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-22 00:35:59 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-08-22 00:35:59 +0000 |
commit | 28b604b69c4cfcdfdc877d019477082dcebd2b52 (patch) | |
tree | 16565103a90be1cf4008e30a6fb32a800dbbb788 | |
parent | bfedee8380ba287829b32028a696cdfed678fc13 (diff) | |
download | forums-28b604b69c4cfcdfdc877d019477082dcebd2b52.tar forums-28b604b69c4cfcdfdc877d019477082dcebd2b52.tar.gz forums-28b604b69c4cfcdfdc877d019477082dcebd2b52.tar.bz2 forums-28b604b69c4cfcdfdc877d019477082dcebd2b52.tar.xz forums-28b604b69c4cfcdfdc877d019477082dcebd2b52.zip |
Various updates "discovered" while working on website compression function useage
git-svn-id: file:///svn/phpbb/trunk@4418 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions_compress.php | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/phpBB/includes/functions_compress.php b/phpBB/includes/functions_compress.php index 5aabc1b592..9993b4bb5e 100644 --- a/phpBB/includes/functions_compress.php +++ b/phpBB/includes/functions_compress.php @@ -1,5 +1,5 @@ <? -// ------------------------------------------------------------- +// ------------------------------------------------------------------------- // // $Id$ // @@ -9,7 +9,7 @@ // WWW : http://www.phpbb.com/ // LICENCE : GPL vs2.0 [ see /docs/COPYING ] // -// ------------------------------------------------------------- +// ------------------------------------------------------------------------- class compress { @@ -30,15 +30,15 @@ class compress if (is_file($phpbb_root_path . $src)) { - if (!($fp = @fopen($phpbb_root_path . $src, 'rb'))) + if (!($fp = @fopen("$phpbb_root_path$src", 'rb'))) { return false; } - $data = fread($fp, filesize($phpbb_root_path . $src)); + $data = fread($fp, filesize("$phpbb_root_path$src")); fclose($fp); - $this->data($src_path, $data, filemtime($phpbb_root_path . $src), false); + $this->data($src_path, $data, filemtime("$phpbb_root_path$src"), false); } else if (is_dir($phpbb_root_path . $src)) { @@ -46,12 +46,12 @@ class compress $src_path = ($src_path && substr($src_path, -1) != '/') ? $src_path . '/' : $src_path; $filelist = array(); - $filelist = filelist($phpbb_root_path . $src, '', '*'); + $filelist = filelist("$phpbb_root_path$src", '', '*'); krsort($filelist); if ($src_path) { - $mtime = (file_exists($phpbb_root_path . $src_path)) ? filemtime($src_path) : time(); + $mtime = (file_exists("$phpbb_root_path$src_path")) ? filemtime("$phpbb_root_path$src_path") : time(); $this->data($src_path, '', $mtime, true); } @@ -63,7 +63,7 @@ class compress $path = (substr($path, 0, 1) == '/') ? substr($path, 1) : $path; $path = ($path && substr($path, -1) != '/') ? $path . '/' : $path; - $this->data("$src_path$path", '', filemtime($phpbb_root_path . $path), true); + $this->data("$src_path$path", '', filemtime("$phpbb_root_path$path"), true); } foreach ($file_ary as $file) @@ -73,7 +73,7 @@ class compress continue; } - $this->data("$src_path$path$file", implode('', file($phpbb_root_path . $src . $path . $file)), filemtime($phpbb_root_path . $src . $path . $file), false); + $this->data("$src_path$path$file", implode('', file("$phpbb_root_path$src$path$file")), filemtime("$phpbb_root_path$src$path$file"), false); } } @@ -173,7 +173,11 @@ class compress_zip extends compress $filename = fread($this->fp, $strlen); - if ($attrib == 32) + if ($attrib == 16 || $attrib == 0x41FF0010 || (!$uc_size && !$crc)) + { + $mkdir_ary[] = "$dst$filename"; + } + else { $seek_ary[$j]['c_method'] = $c_method; $seek_ary[$j]['crc'] = $crc; @@ -186,10 +190,6 @@ class compress_zip extends compress $j++; } - else - { - $mkdir_ary[] = "$dst$filename"; - } } // Create directory structure on fs |