Update config.html.php

Add the common date format in German speaking countries: dd.mm.yyyy
This commit is contained in:
sb0001 2023-12-07 22:47:59 +01:00 committed by GitHub
commit 50ab090a09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -113,7 +113,12 @@ Please install and enable the INTL extension to format the date format to your l
<?php echo format_date(strtotime($date), 'Y-m-d'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format6" value="d.m.Y" <?php if (config('date.format') === 'd.m.Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format6">
<?php echo format_date(strtotime($date), 'd.m.Y'); ?>
</label>
</div>
</div>
</div>
</div>
@ -139,4 +144,4 @@ Please install and enable the INTL extension to format the date format to your l
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>
</form>