You are here

option_cfs_title.inc in Node and Comments Form Settings 7.3

Hide the Revision log field.

File

commentformsettings/includes/option_cfs_title.inc
View source
<?php

/**
 * @file
 * Hide the Revision log field.
 */
function _option_cfs_title(&$form, &$form_state, $settings, $node) {
  if ($settings['cfs_title'] == 1) {
    unset($form['comment_body']['und'][0]['#title']);
  }
  return $form;
}

Functions

Namesort descending Description
_option_cfs_title @file Hide the Revision log field.