diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-24 12:27:10 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-24 12:27:10 +0000 |
commit | f711baceb7ab2c1a9abfa558a55ce862e2092138 (patch) | |
tree | f77014f498780b3ceb74cd361f4b876858a10fb6 /modules/page.module | |
parent | 793db8316fd1a0562a63ecd7b4eb5e2b2366bdbe (diff) | |
download | brdo-f711baceb7ab2c1a9abfa558a55ce862e2092138.tar.gz brdo-f711baceb7ab2c1a9abfa558a55ce862e2092138.tar.bz2 |
- the user_admin_edit() would loose the theme settings.
- added some more help text to page.module.
Diffstat (limited to 'modules/page.module')
-rw-r--r-- | modules/page.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/page.module b/modules/page.module index 06762b671..44ebabde5 100644 --- a/modules/page.module +++ b/modules/page.module @@ -145,7 +145,7 @@ function page_form(&$node, &$help, &$error) { } $output .= form_textarea("Body", "body", $node->body, 60, 20); - $output .= form_textfield("Link", "link", $node->link, 60, 64); + $output .= form_textfield("Navigation link header", "link", $node->link, 60, 64, "To make the page show up on the navigation links enter the name of the link, otherwise leave blank."); $output .= form_select("Type", "format", $node->format, array(0 => "HTML / text", 1 => "PHP")); return $output; |