- Forgot to repair a function ;-)

git-svn-id: file:///svn/phpbb/trunk@5383 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2005-12-27 14:13:38 +00:00
parent 31b94c8cf1
commit 7eea0d3529

View file

@ -39,7 +39,7 @@ class compress
$data = fread($fp, filesize("$phpbb_root_path$src")); $data = fread($fp, filesize("$phpbb_root_path$src"));
fclose($fp); 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)) else if (is_dir($phpbb_root_path . $src))
{ {
@ -52,7 +52,7 @@ class compress
if ($src_path) 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) foreach ($filelist as $path => $file_ary)