diff options
author | Henrik Kjölhede <hkjolhede@gmail.com> | 2013-02-09 15:57:33 +0100 |
---|---|---|
committer | Henrik Kjölhede <hkjolhede@gmail.com> | 2013-02-09 15:57:33 +0100 |
commit | 3b029d551c3fb3ec1eb4c4ea4e6909ede5d6de2a (patch) | |
tree | 6c9c70a28e19a399305bdaa3e696265bb9050cbb /apps/files_external/lib/sftp.php | |
parent | d6b4d25d1da70ddc95f20cb7adad5a7a50a745f0 (diff) | |
download | nextcloud-server-3b029d551c3fb3ec1eb4c4ea4e6909ede5d6de2a.tar.gz nextcloud-server-3b029d551c3fb3ec1eb4c4ea4e6909ede5d6de2a.zip |
corrected namespace
Diffstat (limited to 'apps/files_external/lib/sftp.php')
-rw-r--r-- | apps/files_external/lib/sftp.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_external/lib/sftp.php b/apps/files_external/lib/sftp.php index a2d393818f8..883b3ab643d 100644 --- a/apps/files_external/lib/sftp.php +++ b/apps/files_external/lib/sftp.php @@ -5,12 +5,11 @@ * later. * See the COPYING-README file. */ +namespace OC\Files\Storage; set_include_path(get_include_path() . PATH_SEPARATOR . OC_App::getAppPath('files_external') . '/3rdparty/phpseclib/phpseclib'); require('Net/SFTP.php'); -namespace OC\Files\Storage; - class SFTP extends OC\Files\Storage\Common { private $host; private $user; |