option_cfs_title.inc in Node and Comments Form Settings 7.3
Same filename and directory in other branches
Hide the Revision log field.
File
commentformsettings/includes/option_cfs_title.incView 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
Name![]() |
Description |
---|---|
_option_cfs_title | @file Hide the Revision log field. |