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-07 21:12:01 +0400
committerVincent Petry <pvince81@owncloud.com>2014-02-18 21:33:13 +0400
commit864f0342af15752bbe57055fa41e56a3a28f1bcf (patch)
treeaa6d39f2466b60f728703c1fd4e0178aad00ad11
parent5a2e99c9752acbcdc798804ea9a1a3f98a6c955e (diff)
Make google drive client secret and dropbox api secret a password field
Fix issue #5794 Backport of 828985d
-rwxr-xr-xapps/files_external/lib/config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 5cf3fc50848..6d6e9a1c9fb 100755
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -61,7 +61,7 @@ class OC_Mount_Config {
'configuration' => array(
'configured' => '#configured',
'app_key' => 'App key',
- 'app_secret' => 'App secret',
+ 'app_secret' => '*App secret',
'token' => '#token',
'token_secret' => '#token_secret'),
'custom' => 'dropbox');
@@ -80,7 +80,7 @@ class OC_Mount_Config {
'configuration' => array(
'configured' => '#configured',
'client_id' => 'Client ID',
- 'client_secret' => 'Client secret',
+ 'client_secret' => '*Client secret',
'token' => '#token'),
'custom' => 'google');