Roundcube Community Forum

Release Support => Requests => Topic started by: krupapal on February 18, 2015, 11:56:04 PM

Title: Webmail Date Format
Post by: krupapal on February 18, 2015, 11:56:04 PM
Please let me know how to Change the Date format in MM/DD/YYYY in RoundCube Web Mail.
It does not show in Drop Drop menu under settings.

Please let me know how to solve this issue.

Thank you,
Krupa Pal
Title: Re: Webmail Date Format
Post by: SKaero on February 19, 2015, 01:40:46 AM
You can change the date format under Settings -> User Interface -> Date format.
Title: Re: Webmail Date Format
Post by: yehwhatevr on February 07, 2017, 01:35:54 PM
I'm curious as to why there is not an option for mm/dd/yy or mm/dd/yyyy?
Title: Re: Webmail Date Format
Post by: SKaero on February 07, 2017, 03:11:16 PM
You can add any you want with the following config options:
Code: [Select]
// use this format for date display (date or strftime format)
$config['date_format'] = 'Y-m-d';

// give this choice of date formats to the user to select from
// Note: do not use ambiguous formats like m/d/Y
$config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y');