From 5a2e99c9752acbcdc798804ea9a1a3f98a6c955e 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 Backport of 658af62 --- 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 373246a4297..5cf3fc50848 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',