Maybe I'm outlooking something but the default date format is not applied to the day and week views.
I keep having date labelled the english way where I set all human readable date formats to other values.

For example, day date lable in day view is displayed this way :

day_name, month_name day_number year

but according to my default date format setting it should look like this :

day_name day_number month year

any clue?

Comments

mecano’s picture

seems date format is hard coded in function theme_date_nav_title(), for example for day $nav_title :

$format = !empty($format) ? $format : (empty($view->date_info->mini) ? 'l, F j Y' : 'l, F j');
      $title = date_format_date($view->date_info->min_date, 'custom', $format);

can't remember facing this in previous Date module versions, gonna post in Date issue queue as it is definitively not a Calendar problem.

droope123’s picture

Project: Calendar » Date

Any updates on this? I have been googling arround attempting to change the date format in my calendar (see http://www.thecarhouse.es/calendario-del-motor/2009-12).

So far I have attempted to:
- Change the date format in the view
- Change the format in the CCK field
- Weird hack at template.php (http://drupal.org/node/411828).

With no success. I have changed this to date, as I think theme_date_nav_title() is date's function?

Sorry if this is innapropiate :)

Cheers!
Droope

karens’s picture

Status: Active » Closed (cannot reproduce)

This is a really old report. I can't reproduce any problem using the latest dev version of the code. If there is still a problem in the latest dev version, I need steps to reproduce.