Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2017-01-23 18:42:29 +0300
committersualko <klaus@jsxc.org>2017-01-23 18:42:29 +0300
commit19e8f7512048df2b80069292feae56075f065eec (patch)
tree5d8aba9cb666d305bc4d80d48d952c9e85b9f5e4 /build/ajax/setAdminSettings.php
parent859c5b3adbf27ea3e2f4d25e5409bb2929f2c5d4 (diff)
build v3.1.0-betav3.1.0-beta
Diffstat (limited to 'build/ajax/setAdminSettings.php')
-rw-r--r--build/ajax/setAdminSettings.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/build/ajax/setAdminSettings.php b/build/ajax/setAdminSettings.php
index d327e72..7a098f1 100644
--- a/build/ajax/setAdminSettings.php
+++ b/build/ajax/setAdminSettings.php
@@ -11,6 +11,7 @@ $config->setAppValue('ojsxc', 'xmppDomain', trim($_POST ['xmppDomain']));
$config->setAppValue('ojsxc', 'xmppResource', trim($_POST ['xmppResource']));
$config->setAppValue('ojsxc', 'xmppOverwrite', (isset($_POST ['xmppOverwrite'])) ? $_POST ['xmppOverwrite'] : 'false');
$config->setAppValue('ojsxc', 'xmppStartMinimized', (isset($_POST ['xmppStartMinimized'])) ? $_POST ['xmppStartMinimized'] : 'false');
+$config->setAppValue('ojsxc', 'xmppPreferMail', (isset($_POST ['xmppPreferMail'])) ? $_POST ['xmppPreferMail'] : 'false');
$config->setAppValue('ojsxc', 'iceUrl', trim($_POST ['iceUrl']));
$config->setAppValue('ojsxc', 'iceUsername', trim($_POST ['iceUsername']));
@@ -18,4 +19,7 @@ $config->setAppValue('ojsxc', 'iceCredential', $_POST ['iceCredential']);
$config->setAppValue('ojsxc', 'iceSecret', $_POST ['iceSecret']);
$config->setAppValue('ojsxc', 'iceTtl', $_POST ['iceTtl']);
+$config->setAppValue('ojsxc', 'firefoxExtension', $_POST ['firefoxExtension']);
+$config->setAppValue('ojsxc', 'chromeExtension', $_POST ['chromeExtension']);
+
echo 'true';