diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-09-27 20:15:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-09-27 20:15:54 +0000 |
commit | ff17aa0b94b935becd0c2ab4e14355920cb3d298 (patch) | |
tree | 842186885a66b023dbd18bf2d93658f04c4ff982 /modules/story | |
parent | fc3676d50b9c50f471f8591bcaf07b864e86bf4b (diff) | |
download | brdo-ff17aa0b94b935becd0c2ab4e14355920cb3d298.tar.gz brdo-ff17aa0b94b935becd0c2ab4e14355920cb3d298.tar.bz2 |
- Patch #11045 by Stefan: improved consistency of node modules:
+ made the helptext under the 'Explanation or submission guidelines', more the same (blog & story);
+ made the form_set_error() texts consistent when the body of a blog/story does not match or exceeds the specified minimal numer of words.
+ used the $options for form_select() and form_radios() inline like we do in the rest of drupal;
+ made the textarea sizes for the submission pages the same for all node types and also for the 'Explanation or submission guidelines';
Diffstat (limited to 'modules/story')
-rw-r--r-- | modules/story/story.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/story/story.module b/modules/story/story.module index 90214812a..7c8cb4dda 100644 --- a/modules/story/story.module +++ b/modules/story/story.module @@ -122,7 +122,7 @@ function story_form(&$node) { $output .= implode('', taxonomy_node_form('story', $node)); } - $output .= form_textarea(t('Body'), 'body', $node->body, 60, 15, '', NULL, TRUE); + $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, '', NULL, TRUE); return $output; } |