mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-16 10:15:14 +00:00
/home and /home/ should return the same thing for rawlist() and nlist() (thanks pioyu!)
git-svn-id: http://phpseclib.svn.sourceforge.net/svnroot/phpseclib/trunk@166 21d32557-59b3-4da0-833f-c5933fad653e
This commit is contained in:
parent
497df88951
commit
3da6c0d608
@ -483,6 +483,8 @@ class Net_SFTP extends Net_SSH2 {
|
|||||||
$dir = dirname($dir);
|
$dir = dirname($dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$dir = rtrim($dir, '/');
|
||||||
|
|
||||||
if ($dir == '.' || $dir == $this->pwd) {
|
if ($dir == '.' || $dir == $this->pwd) {
|
||||||
return $this->pwd . $file;
|
return $this->pwd . $file;
|
||||||
}
|
}
|
||||||
@ -632,7 +634,7 @@ class Net_SFTP extends Net_SSH2 {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$dir = $this->_realpath($dir);
|
$dir = $this->_realpath($dir . '/');
|
||||||
if ($dir === false) {
|
if ($dir === false) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user