[Web] Allow sync interval from 1 to 3600

This commit is contained in:
andre.peters
2018-01-15 19:53:09 +01:00
parent 686366b9f5
commit 9fa20e229c
4 changed files with 5 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ if (!isset($_SESSION['mailcow_cc_role'])) {
<div class="form-group">
<label class="control-label col-sm-2" for="mins_interval"><?=$lang['add']['mins_interval'];?></label>
<div class="col-sm-10">
<input type="number" class="form-control" name="mins_interval" min="10" max="3600" value="20" required>
<input type="number" class="form-control" name="mins_interval" min="1" max="3600" value="20" required>
<small class="help-block">10-3600</small>
</div>
</div>