| 6 book.admin.inc | book_admin_edit_validate($form, &$form_state) |
| 7 book.admin.inc | book_admin_edit_validate($form, &$form_state) |
| 8 book.admin.inc | book_admin_edit_validate($form, &$form_state) |
Form validation handler for book_admin_edit().
Checks that the book has not been changed while using the form.
See also
File
- modules/
book/ book.admin.inc, line 95 - Admin page callbacks for the book module.
Code
function book_admin_edit_validate($form, &$form_state) {
if ($form_state['values']['tree_hash'] != $form_state['values']['tree_current_hash']) {
form_set_error('', t('This book has been modified by another user, the changes could not be saved.'));
}
}
Login or register to post comments