Merge branch '3.0'

This commit is contained in:
terrafrost 2023-06-04 16:39:59 -05:00
commit 6833fc79a6
1 changed files with 1 additions and 1 deletions

View File

@ -2512,7 +2512,7 @@ class SFTP extends SSH2
{ {
return !$recursive || $this->filetype($path) != 'dir' ? return !$recursive || $this->filetype($path) != 'dir' ?
$this->get_stat_cache_prop($path, 'size') : $this->get_stat_cache_prop($path, 'size') :
$this->recursiveFilesize($this->rawlist($path, true)); self::recursiveFilesize($this->rawlist($path, true));
} }
/** /**