Active
Project:
Compact Forms
Version:
6.x-1.3
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
8 May 2011 at 08:05 UTC
Updated:
8 May 2011 at 08:05 UTC
for example if I implement _form_alter hook to modify size of fields in the form, compact forms stop working.
And the only one thing I did in my module was this:
if ($form_id == 'user_register') {
$form['pass']['#size'] = 60;
}
what should be done to avoid conflict with compact forms in such cases?