added option for user_quicklog_enter

pull/2554/head
HB9HIL 2023-11-05 12:30:52 +01:00
rodzic 1d52ac5120
commit 9b7a029875
2 zmienionych plików z 16 dodań i 0 usunięć

Wyświetl plik

@ -241,6 +241,14 @@
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_feature_hint'); ?></small>
</div>
<div class="form-group">
<label for="quicklog"><?php echo lang('account_quicklog_enter'); ?></label>
<select class="custom-select" id="quicklog" name="user_quicklog_enter">
<option value="0"><?php echo lang('account_quicklog_enter_log'); ?></option>
<option value="1"><?php echo lang('account_quicklog_enter_search'); ?></option>
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_enter_hint'); ?></small>
</div>
</div>
</div>
</div>

Wyświetl plik

@ -317,6 +317,14 @@
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_feature_hint'); ?></small>
</div>
<div class="form-group">
<label for="quicklog"><?php echo lang('account_quicklog_enter'); ?></label>
<select class="custom-select" id="quicklog" name="user_quicklog_enter">
<option value="0" <?php if ($user_quicklog_enter == 0) { echo " selected =\"selected\""; } ?>><?php echo lang('account_quicklog_enter_log'); ?></option>
<option value="1" <?php if ($user_quicklog_enter == 1) { echo " selected =\"selected\""; } ?>><?php echo lang('account_quicklog_enter_search'); ?></option>
</select>
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_enter_hint'); ?></small>
</div>
</div>
</div>
</div>