option_cfs_author.inc in Node and Comments Form Settings 6.3
Same filename and directory in other branches
File
commentformsettings/includes/option_cfs_author.incView source
<?php
/**
* Hide the Revision log field
*/
function _option_cfs_author(&$form, &$form_state, $settings, $node) {
if ($settings['cfs_author'] == 1) {
unset($form['_author']);
}
return $form;
}
Functions
Name![]() |
Description |
---|---|
_option_cfs_author | Hide the Revision log field |