You are here

function commons_answers_strongarm_alter in Drupal Commons 6.2

File

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

Code

function commons_answers_strongarm_alter(&$items) {

  // Enable comments on Answer nodes.
  if (isset($items['comment_answer'])) {
    $items['comment_answer']->value = '2';
  }
}