function _book_access_permissions_warning in Book access 6
Shows the warning message that reminds the users with the permissions to edit the book permissions that they need to save the settings.
2 calls to _book_access_permissions_warning()
- book_access_remove_user_permissions_submit in ./
book_access.admin.inc - book_access_user_add_submit in ./
book_access.admin.inc - Submission callback to add a new user to the permissions table.
File
- ./
book_access.admin.inc, line 362 - Administration interface for the Book access module.
Code
function _book_access_permissions_warning() {
drupal_set_message(t("The changes will not be saved until the <em>Save configuration</em> button is clicked."), 'warning');
}