You are here

function _option_cfs_title in Node and Comments Form Settings 7.3

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

@file Hide the Revision log field.

File

commentformsettings/includes/option_cfs_title.inc, line 8
Hide the Revision log field.

Code

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