Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-02-12 21:18:09 +0400
committerVincent Petry <pvince81@owncloud.com>2014-02-18 21:15:19 +0400
commit5a2e99c9752acbcdc798804ea9a1a3f98a6c955e (patch)
tree58db6702e8e9877dafa4acc2947a15d6dec87c53 /apps/files_external
parentd07f459409747533c49515abd8d42a478629542b (diff)
External FTP Storage should request hostname instead of URL
Fix issue #6277 Backport of 658af62
Diffstat (limited to 'apps/files_external')
-rwxr-xr-xapps/files_external/lib/config.php2
1 files changed, 1 insertions, 1 deletions
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',