SFTP: rename variable to correct case

This commit is contained in:
terrafrost 2013-03-09 11:37:53 -06:00
parent b9787a81eb
commit 89cd8f09e7

View File

@ -1895,7 +1895,7 @@ class Net_SFTP extends Net_SSH2 {
// mode was added because that's the more industry standard terminology
$attr+= array('mode' => $attr['permissions']);
$fileType = $this->_parseMode($attr['permissions']);
if ($filetype !== false) {
if ($fileType !== false) {
$attr+= array('type' => $fileType);
}
break;