Skip to content

Commit

Permalink
Revert "Fix datetime text box max size"
Browse files Browse the repository at this point in the history
This reverts commit 61d790f.
  • Loading branch information
cproensa authored and dregad committed Apr 16, 2017
1 parent bb527da commit 55cbf47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bug_actiongroup_page.php
Expand Up @@ -283,7 +283,7 @@
}
}

echo '<input type="text" id="due_date" name="due_date" class="datetimepicker input-sm" size="16" maxlength="20" ' .
echo '<input type="text" id="due_date" name="due_date" class="datetimepicker input-sm" size="16" maxlength="16" ' .
'data-picker-locale="' . lang_get_current_datetime_locale() .
'" data-picker-format="' . convert_date_format_to_momentjs( config_get( 'normal_date_format' ) ) . '"' .
'" value="' . $t_date_to_display . '" />';
Expand Down
2 changes: 1 addition & 1 deletion bug_change_status_page.php
Expand Up @@ -241,7 +241,7 @@
<?php echo lang_get( 'due_date' ) ?>
</th>
<td>
<input type="text" id="due_date" name="due_date" class="datetimepicker input-sm" size="16" maxlength="20"
<input type="text" id="due_date" name="due_date" class="datetimepicker input-sm" size="16" maxlength="16"
data-picker-locale="<?php lang_get_current_datetime_locale() ?>"
data-picker-format="<?php echo convert_date_format_to_momentjs( config_get( 'normal_date_format' ) ) ?>"
<?php helper_get_tab_index() ?> value="<?php echo $t_date_to_display ?>" />
Expand Down

0 comments on commit 55cbf47

Please sign in to comment.