summaryrefslogtreecommitdiff
path: root/modules/story.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-07-08 15:24:30 +0000
committerDries Buytaert <dries@buytaert.net>2004-07-08 15:24:30 +0000
commit898bdeffafe913417951ec214d57ec930ea90812 (patch)
treedaae02095efd8209bd8b213cb1b0a9bacc3bdc31 /modules/story.module
parent144c1abb587f7a66e9f03b242ef359d4e0e670f5 (diff)
downloadbrdo-898bdeffafe913417951ec214d57ec930ea90812.tar.gz
brdo-898bdeffafe913417951ec214d57ec930ea90812.tar.bz2
- Marked required fields on the node (story, book, page, blog) and comment
forms using the $required argument of the form_ functions. - Replaced all Optional's and Required's from the taxonomy forms with proper use of the form_ functions. Please check your contributed modules too!
Diffstat (limited to 'modules/story.module')
-rw-r--r--modules/story.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/story.module b/modules/story.module
index ffc10f0e0..2d8357bc1 100644
--- a/modules/story.module
+++ b/modules/story.module
@@ -119,7 +119,7 @@ function story_form(&$node) {
$output .= implode('', taxonomy_node_form('story', $node));
}
- $output .= form_textarea(t('Body'), 'body', $node->body, 60, 15, filter_tips_short());
+ $output .= form_textarea(t('Body'), 'body', $node->body, 60, 15, filter_tips_short(), NULL, TRUE);
return $output;
}