If like me you are not a big fan of the Log Message functionality of Drupal (the one that adds a "Log Message" textarea at the bottom of each node form), then here is a small php snippet override to add to the template.php file of your theme to definitely hide the Message Log:
/**
* Override node form and remove "Log message" textarea
*/
function phptemplate_node_form($form) {
$form['log']['#access'] = FALSE;
return drupal_render($form);
}Make a good use of it ;)
Post new comment