Merge pull request #7178 from owncloud/issue/6277

External FTP Storage should request hostname instead of URL
This commit is contained in:
Thomas Müller 2014-02-12 23:01:41 +01:00
commit 30662fa7ac
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class OC_Mount_Config {
if(OC_Mount_Config::checkphpftp()) $backends['\OC\Files\Storage\FTP']=array( if(OC_Mount_Config::checkphpftp()) $backends['\OC\Files\Storage\FTP']=array(
'backend' => 'FTP', 'backend' => 'FTP',
'configuration' => array( 'configuration' => array(
'host' => 'URL', 'host' => 'Hostname',
'user' => 'Username', 'user' => 'Username',
'password' => '*Password', 'password' => '*Password',
'root' => '&Root', 'root' => '&Root',