From 7eea0d3529d139318278921d2a3424a0ec1ed7b0 Mon Sep 17 00:00:00 2001 From: David M Date: Tue, 27 Dec 2005 14:13:38 +0000 Subject: - Forgot to repair a function ;-) git-svn-id: file:///svn/phpbb/trunk@5383 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_compress.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/functions_compress.php') diff --git a/phpBB/includes/functions_compress.php b/phpBB/includes/functions_compress.php index b8e1cdd9cf..3d8a003051 100644 --- a/phpBB/includes/functions_compress.php +++ b/phpBB/includes/functions_compress.php @@ -39,7 +39,7 @@ class compress $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, false, stat("$phpbb_root_path$src")); } else if (is_dir($phpbb_root_path . $src)) { @@ -52,7 +52,7 @@ class compress if ($src_path) { - $this->data($src_path, '', $mtime, true, stat("$phpbb_root_path$src_path")); + $this->data($src_path, '', true, stat("$phpbb_root_path$src_path")); } foreach ($filelist as $path => $file_ary) -- cgit v1.2.1