mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
- Forgot to repair a function ;-)
git-svn-id: file:///svn/phpbb/trunk@5383 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
31b94c8cf1
commit
7eea0d3529
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue