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-22 13:04:41 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2018-12-22 13:07:31 +0300
commitd5b5c36b1ccb342ac79b4bd1a5a70000d10a2bdb (patch)
treef232bc42420d4068b7f8e9fac1eaa0ae8c9d66e4 /templates
parenta61f9fc7d7918fa72d42dff0a961c8557b13b7cd (diff)
issue#85 Revers active column checkbox
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 c00b06e..0a5f042 100644
--- a/templates/admin.php
+++ b/templates/admin.php
@@ -110,7 +110,8 @@ function print_select_options(
<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-case_insensitive_username", "Case-insensitive username", $_["opt.case_insensitive_username"]); ?>
+ print_checkbox_input($l, "opt-case_insensitive_username", "Case-insensitive username", $_["opt.case_insensitive_username"]);
+ print_checkbox_input($l, "opt-reverse_active", "Reverse active column", $_["opt.reverse_active"]); ?>
<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")); ?>">