cvs diff: Diffing . ? .project Index: masquerade.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/masquerade/masquerade.module,v retrieving revision 1.16.2.14 diff -u -p -r1.16.2.14 masquerade.module --- masquerade.module 20 Jun 2009 04:56:14 -0000 1.16.2.14 +++ masquerade.module 6 Aug 2009 01:43:09 -0000 @@ -152,7 +152,8 @@ function masquerade_admin_settings() { '#title' => t('Menu Quick Switch user'), '#autocomplete_path' => 'masquerade/autocomplete', '#default_value' => check_plain($test_name->name), - '#description' => t('Enter the username of an account you wish to switch easily between via a menu item.') + '#description' => t('Enter the username of an account you wish to switch easily between via a menu item.'), + '#maxlength' => NULL, ); $form['masquerade_quick_switches'] = array( @@ -160,7 +161,8 @@ function masquerade_admin_settings() { '#title' => t('Block Quick Switch users'), '#autocomplete_path' => 'masquerade/autocomplete/multiple', '#default_value' => variable_get('masquerade_quick_switches', ''), - '#description' => t('Enter the usernames, separated by commas, of accounts to show as quick switch links in the Masquerade block.') + '#description' => t('Enter the usernames, separated by commas, of accounts to show as quick switch links in the Masquerade block.'), + '#maxlength' => NULL, ); $form['#validate'][] = 'masquerade_admin_settings_validate';