cvs diff: Diffing .
? .project
Index: masquerade.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/masquerade/masquerade.module,v
retrieving revision 1.16.2.15
diff -u -p -r1.16.2.15 masquerade.module
--- masquerade.module 6 Aug 2009 19:34:39 -0000 1.16.2.15
+++ masquerade.module 6 Aug 2009 19:37:52 -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,
);
$quick_switch_users = array();
@@ -165,7 +166,8 @@ function masquerade_admin_settings() {
'#title' => t('Block Quick Switch users'),
'#autocomplete_path' => 'masquerade/autocomplete/multiple',
'#default_value' => !empty($quick_switch_users) ? implode(', ', $quick_switch_users) : '',
- '#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';