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-10-28 19:40:12 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-10-28 20:19:58 +0300
commit09050966128380e7d429325c241c1ef95b0eb756 (patch)
treecde8f865d6d64b72cecca0c1161cffb53366f5fc /templates
parent9ab6df0f7699b8b5148bee10fa982b20f64eb9c3 (diff)
Issue#74 Case (in)sensitive login
Diffstat (limited to 'templates')
-rw-r--r--templates/admin.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/admin.php b/templates/admin.php
index 64c4301..b722b8b 100644
--- a/templates/admin.php
+++ b/templates/admin.php
@@ -109,7 +109,8 @@ function print_select_options(
<p class="settings-hint"><?php p($l->t("Here are all currently supported options.")); ?></p>
<fieldset><?php
print_checkbox_input($l, "opt-name_change", "Allow display name change", $_["opt.name_change"]);
- print_checkbox_input($l, "opt-password_change", "Allow password change", $_["opt.password_change"]); ?>
+ print_checkbox_input($l, "opt-password_change", "Allow password change", $_["opt.password_change"]);
+ print_checkbox_input($l, "opt-case_insensitive_username", "Case-insensitive username", $_["opt.case_insensitive_username"]); ?>
<div class="button-right"><?php
print_checkbox_input($l, "opt-use_cache", "Use cache", $_["opt.use_cache"], false); ?>
<input type="submit" id="user_sql-clear_cache" value="<?php p($l->t("Clear cache")); ?>">