diff options
Diffstat (limited to 'modules/node.module')
-rw-r--r-- | modules/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node.module b/modules/node.module index 875124154..4613c9006 100644 --- a/modules/node.module +++ b/modules/node.module @@ -1228,7 +1228,7 @@ function node_types_configure($type = NULL) { $node->type = $type; $form['submission'] = array('#type' => 'fieldset', '#title' =>t('Submission form') ); $form['submission'][$type . '_help'] = array( - '#type' => 'textarea', '#title' => t('Explanation or submission guidelines'), '#default_value' => variable_get($type .'_help', ''), '#cols' => 60, '#rows' => 5, + '#type' => 'textarea', '#title' => t('Explanation or submission guidelines'), '#default_value' => variable_get($type .'_help', ''), '#description' => t('This text will be displayed at the top of the %type submission form. It is useful for helping or instructing your users.', array('%type' => node_get_name($type))) ); $form['submission']['minimum_'. $type .'_size'] = array( |