
On 5/15/07, Christian Schoepplein
On Fri, May 11, 2007 at 10:03:30PM +0100, Mike Dent wrote:
where is the best place to configure the date setting in OTRS? Currently it is showing:-
Created: 05/10/2007 23:46:46
Which is not correct for the UK. It should be 10/05/2007 .
Please see the language files under
Kernel/Language
In the en.pm file you can find the entry
$Self->{DateFormat} = '%M/%D/%Y %T';
Just change it to your needs.
Thank Christian, just 6 lines to change for our UK format dates:- $Self->{DateFormat} = '%D/%M/%Y %T'; $Self->{DateFormatShort} = '%D/%M/%Y'; $Self->{DateFormatLong} = '%A %B %D %T %Y'; $Self->{DateFormatShort} = '%D/%M/%Y'; $Self->{DateInputFormat} = '%D/%M/%Y'; $Self->{DateInputFormatLong} = '%D/%M/%Y - %T'; Mike