diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-15 20:54:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-15 20:54:27 +0000 |
commit | 93a17c0097584bb2fb20298c1253304ceb2c495e (patch) | |
tree | 1e5c4de8ddbfb6fb04757528fa37462930665662 | |
parent | f70b6182e136a66039711f6a452fd582698f3dd9 (diff) | |
download | brdo-93a17c0097584bb2fb20298c1253304ceb2c495e.tar.gz brdo-93a17c0097584bb2fb20298c1253304ceb2c495e.tar.bz2 |
- Patch #460594 by elliotttf, lambic | LiliVG: Fixed node_assign_owner_action_form() limits username length to 7 characters.
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 21c98dfd0..586d2e037 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -3047,7 +3047,7 @@ function node_assign_owner_action_form($context) { '#default_value' => $owner_name, '#autocomplete_path' => 'user/autocomplete', '#size' => '6', - '#maxlength' => '7', + '#maxlength' => '60', '#description' => $description, ); } |