function _option_nfs_sticky_display in Node and Comments Form Settings 7.3
Hide the sticky at top of list checkbox if available.
File
- includes/
option_nfs_sticky_display.inc, line 6
Code
function _option_nfs_sticky_display(&$form, &$form_state, $settings, $node) {
if ($settings['nfs_sticky_display'] == 1) {
$form['options']['sticky']['#access'] = FALSE;
}
}