Tribes now selectable on signup

This commit is contained in:
2024-06-01 11:16:07 +02:00
parent c1d83d5536
commit 92af6f6cd7
4 changed files with 12 additions and 8 deletions

View File

@ -1,6 +1,6 @@
<?php
function _kompass_print_datebox($settingName, $settingValue, $style = '') {
echo '<input style="' . $style . '" type="date" name="' . $settingName . '" value="' . $settingValue. '" />';
echo '<input required style="' . $style . '" type="date" name="' . $settingName . '" value="' . $settingValue. '" />';
if (defined('WP_DEBUG') && WP_DEBUG == true) {
echo '<br />' . $settingName;
}