diff options
author | David M <davidmj@users.sourceforge.net> | 2005-12-27 14:13:38 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2005-12-27 14:13:38 +0000 |
commit | 7eea0d3529d139318278921d2a3424a0ec1ed7b0 (patch) | |
tree | 1441ffe219d1624dd29e0606f075c3f6ef531bd2 /phpBB/includes | |
parent | 31b94c8cf13153be9fd4279f641e48dd94859ddd (diff) | |
download | forums-7eea0d3529d139318278921d2a3424a0ec1ed7b0.tar forums-7eea0d3529d139318278921d2a3424a0ec1ed7b0.tar.gz forums-7eea0d3529d139318278921d2a3424a0ec1ed7b0.tar.bz2 forums-7eea0d3529d139318278921d2a3424a0ec1ed7b0.tar.xz forums-7eea0d3529d139318278921d2a3424a0ec1ed7b0.zip |
- Forgot to repair a function ;-)
git-svn-id: file:///svn/phpbb/trunk@5383 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_compress.php | 4 |
1 files changed, 2 insertions, 2 deletions
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) |