mirror of
https://github.com/danog/tgseclib.git
synced 2024-11-27 12:44:38 +01:00
Merge branch '1.0' into 2.0
* 1.0: SFTP: don't update stat cache when it's been disabled
This commit is contained in:
commit
f782005a3f
@ -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