Index: admin_templates/incs/form_blocks.tpl =================================================================== --- admin_templates/incs/form_blocks.tpl (revision 14059) +++ admin_templates/incs/form_blocks.tpl (working copy) @@ -311,7 +311,7 @@ -   +   -   +   () @@ -352,7 +352,7 @@ - + " style="cursor: pointer; margin-right: 5px" title="Date selector" @@ -375,7 +375,7 @@ } }); -   () +   () Index: kernel/utility/formatters/date_formatter.php =================================================================== --- kernel/utility/formatters/date_formatter.php (revision 14059) +++ kernel/utility/formatters/date_formatter.php (working copy) @@ -215,6 +215,11 @@ $options['format'] = $this->language->GetDBField($regs[1]); } + if ($options['format'] == '_input_') { + // use input format instead of output format + $options['format'] = $options['input_format']; + } + if (!$options['use_timezone']) { return adodb_gmdate($options['format'], $value); }