You are here

function commons_answers_form_alter in Drupal Commons 6.2

Implementation of hook_form_alter().

File

modules/features/commons_answers/commons_answers.module, line 48

Code

function commons_answers_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id == 'question_node_form' && isset($form['#node'])) {
    $form['body_field']['body']['#title'] = t('Additional information');
  }
}