summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/config.php
diff options
context:
space:
mode:
authorHenrik Kjölhede <hkjolhede@gmail.com>2013-01-26 21:51:18 +0100
committerHenrik Kjölhede <hkjolhede@gmail.com>2013-01-26 21:51:18 +0100
commitb1b2eafa50db54b2613cf2bc52bfab2015d67b2f (patch)
tree68992916824e3bdd4c6ba9ab5af955420bfd8123 /apps/files_external/lib/config.php
parenta26d50640fc4a2524255c85b10fb010676b3e22d (diff)
parentc9e25d3fab17b178759dd6d2f9488aa4cf37fbbb (diff)
downloadnextcloud-server-b1b2eafa50db54b2613cf2bc52bfab2015d67b2f.tar.gz
nextcloud-server-b1b2eafa50db54b2613cf2bc52bfab2015d67b2f.zip
Merge remote-tracking branch 'upstream/master'
Conflicts: apps/files_external/lib/config.php
Diffstat (limited to 'apps/files_external/lib/config.php')
-rwxr-xr-xapps/files_external/lib/config.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 880e6d97e64..2038939153c 100755
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -38,7 +38,7 @@ class OC_Mount_Config {
* @return array
*/
public static function getBackends() {
-
+
$backends['OC_Filestorage_Local']=array(
'backend' => 'Local',
'configuration' => array(
@@ -77,7 +77,7 @@ class OC_Mount_Config {
'token' => '#token',
'token_secret' => '#token secret'),
'custom' => 'google');
-
+
$backends['OC_Filestorage_SWIFT']=array(
'backend' => 'OpenStack Swift',
'configuration' => array(
@@ -86,7 +86,7 @@ class OC_Mount_Config {
'token' => '*Token',
'root' => '&Root',
'secure' => '!Secure ftps://'));
-
+
if(OC_Mount_Config::checksmbclient()) $backends['OC_Filestorage_SMB']=array(
'backend' => 'SMB / CIFS',
'configuration' => array(
@@ -95,7 +95,7 @@ class OC_Mount_Config {
'password' => '*Password',
'share' => 'Share',
'root' => '&Root'));
-
+
$backends['OC_Filestorage_DAV']=array(
'backend' => 'ownCloud / WebDAV',
'configuration' => array(
@@ -411,7 +411,7 @@ class OC_Mount_Config {
}
/**
- * check if smbclient is installed
+ * check if smbclient is installed
*/
public static function checksmbclient() {
if(function_exists('shell_exec')) {