Author Topic: 1.5RC - date formats in calendar  (Read 1968 times)

strikeog

  • Newbie
  • *
  • Posts: 3
    • View Profile
1.5RC - date formats in calendar
« on: July 19, 2009, 08:30:37 pm »
Calendar views are showing incorrect date formats in day and week views, ignoring user preferences on date formats

In application/views/event/viewweek.php, line 32 currently reads:

   $date_format = user_config_option('date_format', 'd/m/Y');

Should read:

   $date_format = user_config_option('date_format', 'm/d/Y');

or maybe should read (???):

   $date_format = user_config_option('date_format');


And again the exact same thing in viewdate.php line 35

ignacio

  • Hero Member
  • *****
  • Posts: 1703
    • View Profile
Re: 1.5RC - date formats in calendar
« Reply #1 on: July 21, 2009, 03:09:43 pm »
The last one is the correct one. Will be fixed for next release. Thanks.