From 98b116555dd2001de7bc3f78c9e5e4b4a872abb5 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 29 Sep 2004 18:05:11 +0000 Subject: [PATCH] - Removed the link feature. It was death code, bound to confuse people. TODO after Drupal 4.5.0: clean up the page module and remove additional cruft. --- modules/page.module | 3 --- modules/page/page.module | 3 --- 2 files changed, 6 deletions(-) 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; }