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 <coding@schilljs.com>2016-09-20 12:17:13 +0300
committerJoas Schilling <coding@schilljs.com>2016-10-21 10:09:26 +0300
commit103bf6dd287a70d48a8e47543873708056b7fe0f (patch)
treeb6be6936b0514806473a75bdac6c63ae6f3465d7 /apps/federatedfilesharing/js
parent0b1fb180a53fc4e533e2f194977293bc509c5df3 (diff)
Switch to public API
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/federatedfilesharing/js')
-rw-r--r--apps/federatedfilesharing/js/settings-admin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/federatedfilesharing/js/settings-admin.js b/apps/federatedfilesharing/js/settings-admin.js
index 257c864b04f..a0b8feb945e 100644
--- a/apps/federatedfilesharing/js/settings-admin.js
+++ b/apps/federatedfilesharing/js/settings-admin.js
@@ -5,7 +5,7 @@ $(document).ready(function() {
if (this.checked) {
value = 'yes';
}
- OC.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
+ OCP.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
});
});