mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 15:20:58 +00:00
Merge branch '2.0'
* 2.0: SFTP: don't update stat cache when it's been disabled
This commit is contained in:
commit
cae4a3ebbb
@ -1023,6 +1023,10 @@ class SFTP extends SSH2
|
|||||||
*/
|
*/
|
||||||
function _update_stat_cache($path, $value)
|
function _update_stat_cache($path, $value)
|
||||||
{
|
{
|
||||||
|
if ($this->use_stat_cache === false) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// preg_replace('#^/|/(?=/)|/$#', '', $dir) == str_replace('//', '/', trim($path, '/'))
|
// preg_replace('#^/|/(?=/)|/$#', '', $dir) == str_replace('//', '/', trim($path, '/'))
|
||||||
$dirs = explode('/', preg_replace('#^/|/(?=/)|/$#', '', $path));
|
$dirs = explode('/', preg_replace('#^/|/(?=/)|/$#', '', $path));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user