Hi,
The Vertical Tabs seems to not work with Event 6.x-2.x-dev, and a 'null' title appears on the event tab. See
http://tc.indymedia.org/admin/node/add/event
If this is some odd module conflict or something I will update. I have tried clearing caches to no avail. Thanks!
| Comment | File | Size | Author |
|---|---|---|---|
| #16 | vertical.patch | 540 bytes | yngens |
| #8 | vertical_tab_title.patch | 579 bytes | md2 |
Comments
Comment #1
hongpong commentedI have opened a corresponding ticket on Vertical_tabs, sorry I wasn't sure which module to post the conflict to. Thanks!
http://drupal.org/node/728020
Comment #2
dave reidSite is offline, can't confirm the bug.
Comment #3
hongpong commentedSorry it is back online now. I am trying to get resourceful with the
http://drupal.org/handbook/modules/vertical-tabs
i am trying
$conf['vertical_tabs_forms']['page_node_form'] = array('vertical-tabs-event' => FALSE);
$conf['vertical_tabs_forms']['page_node_form']['vertical-tabs-event'] = array('menu' => FALSE);
$conf['vertical_tabs_forms']['vertical-tabs-event'] = array('menu' => FALSE);
$conf['vertical_tabs_forms']['page_node_form'] = array('event' => FALSE);
I think the first one is the one that should work( or possibly the 4th), however it seems that technically the vertical-tabs-event string is a CLASS and not an ID. (the doc says // Enable vertical tabs but be selective of which fieldsets are included. By default all fieldsets are tabified. To exclude certain fieldsets, use an array with the fieldset ids associated with FALSE values.)
Thanx!
Comment #4
dave reidThe Event module needs to provide a title for its fieldset. That's why its getting a 'Null' for the summary title.
Comment #5
aimutch commentedDave,
Can you point to where this would be implemented?
Thanks,
Andrew
Comment #6
dave reidProblem is line 2129 of event.module:
$form['event'] = array('#type' => 'fieldset', '#tree' =>TRUE);The fieldset element needs a #title attribute.
Comment #7
aimutch commentedThanks! I just found that myself. I'll see if that can get patched up.
Comment #8
md2 commentedPatch attached that fixes the issue.
Comment #9
buddaPatch works. Should the title be "Events" though?
Comment #10
hongpong commentedThanks, DaveReid & md2, this patch solved the problem. I set 'Start-End Dates' instead of "events" for the title, but to each his/her own.
Comment #11
Scyther commentedPlease add this in the next release!
Comment #12
Scyther commentedComment #13
aimutch commentedAny reason that this can't be rolled into the next release? I've had this patch applied on a live site for almost a year without any problems.
Comment #15
yngens commentedWith today's (July 5, 2011) release of event 6.x-2.x-dev patch in #8 gives:
Comment #16
yngens commentedWorking patch against the latest dev version of the module.
Comment #17
killes@www.drop.org commentedthanks, committed.