--- navigation.module.orig	2004-09-15 23:04:34.494718172 -0400
+++ navigation.module	2004-09-15 23:04:28.804314450 -0400
@@ -403,7 +403,7 @@
 }
 
 function navigation_form_menu($edit = array()) {
-  $form = form_textfield(t("Menu name"), "name", $edit["name"], 50, 64, t("Required") .". ". t("The name for this menu.  Example: 'Main'") .".");
+  $form = form_textfield(t("Menu name"), "name", $edit["name"], 50, 255, t("Required") .". ". t("The name for this menu.  Example: 'Main'") .".");
   $form .= form_textarea(t("Description"), "description", $edit["description"], 60, 5, t("Optional") .". ". t("Description of the menu.  This description is also used to describe the menu block that will automatically be generated for this menu."));
   $form .= form_weight(t("Weight"), "weight", $edit["weight"], 10, t("Optional. When editing menus, the heavier menus will sink and the lighter menus will be positioned nearer the top."));
   if(variable_get("navigation_enable_menu_role", 0)) {
@@ -426,9 +426,9 @@
   $mid = isset($edit["mid"]) ? $edit["mid"] : arg(5);
   $menu = navigation_get_menu($mid);
 
-  $form = form_textfield(t("Menu item name"), "name", $edit["name"], 50, 64, t("Required") .". ". t("The name for this menu item.  Example: 'FAQ'."));
+  $form = form_textfield(t("Menu item name"), "name", $edit["name"], 50, 255, t("Required") .". ". t("The name for this menu item.  Example: 'FAQ'."));
   $form .= form_textarea(t("Description"), "description", $edit["description"], 60, 5, t("Optional") .". ". t("A description for this menu item.  This will be displayed in most web browsers when a user drags their mouse over the menu item."));
-  $form .= form_textfield(t("URL"), "url", $edit["url"], 50, 64, t("Required") .". ". t("Destination URL when clicking this menu item."));
+  $form .= form_textfield(t("URL"), "url", $edit["url"], 50, 255, t("Required") .". ". t("Destination URL when clicking this menu item."));
 
   $parent = array_keys(navigation_get_parents($edit["iid"]));
   $children = navigation_get_tree($mid, $edit["iid"]);
