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

github.com/nextcloud/user_sql.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-12-24 01:13:20 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-12-24 01:13:20 +0300
commit63cd9d330ebb4735cab16750e3be6edf3911cbca (patch)
tree89e6c1ff2d467a35804900abd4444108ec8c5e7d /templates
parent602390b5b8e412f00099c473c7eecb7c16efb5d9 (diff)
div for crypto params
Diffstat (limited to 'templates')
-rw-r--r--templates/admin.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/admin.php b/templates/admin.php
index 0a5f042..2bac565 100644
--- a/templates/admin.php
+++ b/templates/admin.php
@@ -131,7 +131,9 @@ function print_select_options(
}
}
- print_select_options($l, "opt-crypto_class", "Hash algorithm", $hashes, $_["opt.crypto_class"]);
+ print_select_options($l, "opt-crypto_class", "Hash algorithm", $hashes, $_["opt.crypto_class"]); ?>
+ <div id="opt-crypto_params"></div>
+ <?php
print_select_options($l, "opt-email_sync", "Email sync", ["" => "None", "initial" => "Synchronise only once", "force_nc"=>"Nextcloud always wins", "force_sql"=>"SQL always wins"], $_["opt.email_sync"]);
print_select_options($l, "opt-quota_sync", "Quota sync", ["" => "None", "initial" => "Synchronise only once", "force_nc"=>"Nextcloud always wins", "force_sql"=>"SQL always wins"], $_["opt.quota_sync"]);
print_select_options($l, "opt-home_mode", "Home mode", ["" => "Default", "query" => "Query", "static" => "Static"], $_["opt.home_mode"]);