From 3cbcff56b20d384c92bbf9a627a8878a364e0597 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Sun, 22 Aug 2010 11:16:19 -0400 Subject: [ticket/7296] Exporting styles to tar creates corrupted archives. Add the folders to the archive before putting the files inside, seems to break the tar-archives. PHPBB3-7296 --- phpBB/includes/functions_compress.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'phpBB/includes/functions_compress.php') diff --git a/phpBB/includes/functions_compress.php b/phpBB/includes/functions_compress.php index f422eaa8c1..455debd939 100644 --- a/phpBB/includes/functions_compress.php +++ b/phpBB/includes/functions_compress.php @@ -53,13 +53,18 @@ class compress $filelist = filelist("$phpbb_root_path$src", '', '*'); krsort($filelist); + /** + * Commented out, as adding the folders produces corrupted archives if ($src_path) { $this->data($src_path, '', true, stat("$phpbb_root_path$src")); } + */ foreach ($filelist as $path => $file_ary) { + /** + * Commented out, as adding the folders produces corrupted archives if ($path) { // Same as for src_path @@ -68,6 +73,7 @@ class compress $this->data("$src_path$path", '', true, stat("$phpbb_root_path$src$path")); } + */ foreach ($file_ary as $file) { -- cgit v1.2.1