Closed (fixed)
Project:
Compact Forms
Version:
5.x-1.0
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Jan 2008 at 20:15 UTC
Updated:
15 May 2009 at 23:50 UTC
In form with both compact_forms.module and captche.module enabled:
warning: Missing argument 3 for _compact_forms_resize_fields(), called in D:\usr\www\ittrend\sites\all\modules\compact_forms\compact_forms.module on line 74 and defined in D:\usr\www\ittrend\sites\all\modules\compact_forms\compact_forms.module on line 68.
There is tiny patch to solve this:
correct line 68 from
68: function _compact_forms_resize_fields(&$subform, $field_size, $descriptions) {
to
68: function _compact_forms_resize_fields(&$subform, $field_size, $descriptions = NULL) {
Comments
Comment #1
sunThis was fixed as part of #404132: Properly use Drupal behaviors / Code clean-up.