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:
authorThomas Müller <thomas.mueller@tmit.eu>2014-02-13 02:01:41 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-13 02:01:41 +0400
commit30662fa7acbe7a367ee8b0c07afabf425a10ef06 (patch)
tree578e9f9b96d79610541331e09f61f65a415f6a51
parent7af456730eef4a1c947188c12d69a0caf0a5bd2b (diff)
parent658af627ce3add85282a73fa711f28745041694d (diff)
Merge pull request #7178 from owncloud/issue/6277
External FTP Storage should request hostname instead of URL
-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 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',