diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-12 18:18:09 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-12 18:20:10 +0100 |
commit | 658af627ce3add85282a73fa711f28745041694d (patch) | |
tree | 499948b9f2a25665378dba7d7d6307dfcd5c0adb /apps/files_external | |
parent | 3699728a3a02dd17ea617a7e8f781c09e837f360 (diff) | |
download | nextcloud-server-658af627ce3add85282a73fa711f28745041694d.tar.gz nextcloud-server-658af627ce3add85282a73fa711f28745041694d.zip |
External FTP Storage should request hostname instead of URL
Fix issue #6277
Diffstat (limited to 'apps/files_external')
-rwxr-xr-x | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 48fc4dfe46e..8c85c5fbde8 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -69,7 +69,7 @@ class OC_Mount_Config { if(OC_Mount_Config::checkphpftp()) $backends['\OC\Files\Storage\FTP']=array( 'backend' => 'FTP', 'configuration' => array( - 'host' => 'URL', + 'host' => 'Hostname', 'user' => 'Username', 'password' => '*Password', 'root' => '&Root', |