Index: invite.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/invite/invite.module,v retrieving revision 1.25.2.18 diff -u -p -r1.25.2.18 invite.module --- invite.module 5 Aug 2010 10:19:34 -0000 1.25.2.18 +++ invite.module 5 Aug 2010 10:26:30 -0000 @@ -826,7 +826,6 @@ function invite_page_form($remaining_inv '#type' => 'textfield', '#title' => t('Subject'), '#default_value' => $subject, - '#maxlength' => 64, '#description' => t('Type the subject of the invitation e-mail.'), '#required' => TRUE, ); Index: invite_admin.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/invite/invite_admin.inc,v retrieving revision 1.3.2.7 diff -u -p -r1.3.2.7 invite_admin.inc --- invite_admin.inc 5 Aug 2010 10:00:18 -0000 1.3.2.7 +++ invite_admin.inc 5 Aug 2010 10:26:30 -0000 @@ -98,8 +98,6 @@ function invite_settings() { '#type' => 'textfield', '#title' => t('Subject'), '#default_value' => variable_get('invite_subject', t('[inviter-raw] has sent you an invite!')), - '#size' => 30, - '#maxlength' => 64, '#description' => t('Type the default subject of the invitation e-mail.') .' '. t('Use the syntax [token] if you want to insert a replacement pattern.'), '#required' => TRUE, );