book_validate
- Versions
- 4.6
book_validate(&$node)
Implementation of hook_validate().
Code
modules/book.module, line 191
<?php
function book_validate(&$node) {
// Set default values for non-administrators.
if (!user_access('administer nodes')) {
$node->weight = 0;
$node->revision = 1;
}
}
?>Login or register to post comments 