function _option_cfs_title in Node and Comments Form Settings 7.2
Same name and namespace in other branches
- 6.3 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()
- 6.2 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()
- 7.3 commentformsettings/includes/option_cfs_title.inc \_option_cfs_title()
@file Hide the Revision log field.
File
- commentformsettings/
includes/ option_cfs_title.inc, line 7 - 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;
}