You are here

function _option_cfs_title in Node and Comments Form Settings 6.3

Same name and namespace in other branches
  1. 6.2 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()
  2. 7.3 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()
  3. 7.2 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()

Hide the Revision log field

File

commentformsettings/includes/option_cfs_title.inc, line 6

Code

function _option_cfs_title(&$form, &$form_state, $settings, $node) {
  if ($settings['cfs_title'] == 1) {
    unset($form['comment_filter']['comment']['#title']);
  }
  return $form;
}