field type: date
Widget: Textfield with date popup calendar
Default value: blank
Input format: 02/11/2009 - 6:20pm
Years back and forward: 0:+3
Time increment: 15
Required: Yes
To date: Required
Granularity: Year, Month, Day, Hour, Minute
Default Display: Medium
Time zone handling: Date's time zone (have used site's time zone to no effect)
Signup Settings: set to this field.
Any use of %node_start_time doesn't seem to work. Basic content type with just this one date field.
Comments
Comment #1
redndahead commentedI tried to debug this as much as I could.
In signup\includes\date.inc in the function _signup_date_format_date() There is $date_make_date($date_value, $db_tz, $field['type']);
At that point these are the values
$date_value: 2009-02-18 18:00:00
$db_tz: UTC
$display_tz: America/Los_Angeles
$field['type']: date
about 5 lines later you have $date_out = date_format_date($date, 'custom', $field['output_format_date']);
Values
$date_out: (empty)
$field['output_format_date']: (empty)
So somewhere either in date_make_date() or date_format_date() things go kaput
I retried this using a different content type this time using the datetime field and the same results occur. Hope this helps
Comment #2
dwwI wonder if this is due to #390000: Date format has changed -- sounds like it. What version of CCK Date are you running?
Comment #3
dwwI wasn't able to reproduce this myself on a test site. Can you update to the latest signup code in the DRUPAL-6--1 branch and try again? I committed a fix for #390000: Date format has changed, and I wonder if solves this.
Comment #4
redndahead commentedI'll try to look at it during drupalcon
Comment #5
dww@redndahead: Ping? Any luck testing this? Thanks.
Comment #6
redndahead commentedUpdated to latest cvs of signup and Date 2.0 and it seems to have been fixed. Sorry for taking so long to get back to you. Thanks a lot.
Comment #7
dwwGreat, thanks for testing.