diff --git a/modules/page.module b/modules/page.module index 9c51a2ffc6e..7f0a797e926 100644 --- a/modules/page.module +++ b/modules/page.module @@ -125,9 +125,6 @@ function page_form(&$node) { $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, '', NULL, TRUE); $output .= filter_form('format', $node->format); - $output .= form_textfield(t('Link name'), 'link', $node->link, 60, 64, t('To make the page show up in the navigation links, enter the name of the link. Otherwise, leave this blank.')); - $output .= form_textfield(t('Link description'), 'description', $node->description, 60, 64, t("The description displayed when hovering over the page's link. Leave blank when you don't want a description.")); - return $output; } diff --git a/modules/page/page.module b/modules/page/page.module index 9c51a2ffc6e..7f0a797e926 100644 --- a/modules/page/page.module +++ b/modules/page/page.module @@ -125,9 +125,6 @@ function page_form(&$node) { $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, '', NULL, TRUE); $output .= filter_form('format', $node->format); - $output .= form_textfield(t('Link name'), 'link', $node->link, 60, 64, t('To make the page show up in the navigation links, enter the name of the link. Otherwise, leave this blank.')); - $output .= form_textfield(t('Link description'), 'description', $node->description, 60, 64, t("The description displayed when hovering over the page's link. Leave blank when you don't want a description.")); - return $output; }