Posted by gateway69 on November 17, 2012 at 1:14am
3 followers
Jump to:
| Project: | Content Construction Kit (CCK) |
| Version: | 6.x-3.x-dev |
| Component: | fieldgroup.module |
| Category: | bug report |
| Priority: | major |
| Assigned: | Unassigned |
| Status: | active |
| Issue tags: | fieldgroup_get_tree |
Issue Summary
We just updated to 6.3 from 6.2 and I noticed in our db log we are seeing a bunch of these warnings.. any ideas?
Notice: Undefined index: description in _fieldgroup_get_tree() (line 274 of /var/www/sites/all/modules/cck/modules/fieldgroup/fieldgroup.module).
Comments
#1
Did you ever find the cause of this issue?
#2
In fieldgroup module, you can change this:
// Allow external modules to translate field group strings.$group_strings = array(
'label' => $group['label'],
'form_description' => $group['settings']['form']['description'],
'display_description' => $group['settings']['display']['description'],
);
to this:
// Allow external modules to translate field group strings.$group_strings = array(
'label' => $group['label'],
'form_description' => $group['settings']['form']['description'],
'display_description' => isset($group['settings']['display']['description']) ? $group['settings']['display']['description'] : '',
);