Index: clock.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/clock/clock.module,v retrieving revision 1.9.2.15 diff -u -p -r1.9.2.15 clock.module --- clock.module 7 Oct 2010 17:17:12 -0000 1.9.2.15 +++ clock.module 19 Dec 2010 12:00:05 -0000 @@ -271,8 +271,9 @@ function theme_clock($timezone, $date_fo } // Create variables that are needed for the JavaScript time calculation. - // Create a time string. - $time = date_format_date(date_now($timezone), $type = 'custom', $format = 'F j, Y H:i:s'); + // Create a time string, from which JavaScript can create a date. The time + // string contains the month name, which needs to be in English. + $time = date_format_date(date_now($time_zone), $type = 'custom', $format = 'F j, Y H:i:s', $langcode = 'en'); // Get the time zone offset in seconds. $offset_seconds = date_format_date(date_now($timezone), $type = 'custom', $format = 'Z'); // Get Daylight Savings Time information. '1' for yes, '0' for no.