From 658af627ce3add85282a73fa711f28745041694d Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 12 Feb 2014 18:18:09 +0100 Subject: [PATCH] External FTP Storage should request hostname instead of URL Fix issue #6277 --- apps/files_external/lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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',