summaryrefslogtreecommitdiff
path: root/modules/page/page.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2004-09-28 19:13:03 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2004-09-28 19:13:03 +0000
commit1298d2b9c90ba496a9e63b76cd9875113d25257e (patch)
tree719c5e7b9d6f1e054cbf9663cfc597ac7b7d3c1d /modules/page/page.module
parent60f945bcc758b6965e80e64e57219ba4cde02482 (diff)
downloadbrdo-1298d2b9c90ba496a9e63b76cd9875113d25257e.tar.gz
brdo-1298d2b9c90ba496a9e63b76cd9875113d25257e.tar.bz2
Modified version of #10230: Put placement of filter format selector in a module's hands, and move it below the relevant textarea.
Diffstat (limited to 'modules/page/page.module')
-rw-r--r--modules/page/page.module1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/page/page.module b/modules/page/page.module
index a73da4679..9c51a2ffc 100644
--- a/modules/page/page.module
+++ b/modules/page/page.module
@@ -123,6 +123,7 @@ 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."));