function _option_cfs_title in Node and Comments Form Settings 6.2
Same name and namespace in other branches
- 6.3 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()
- 7.3 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()
- 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;
}