You are here

function _acl_format_account_name in ACL 8

Helper function to format an account name.

1 call to _acl_format_account_name()
acl_node_access_explain in ./acl.module
Implements hook_node_access_explain().

File

./acl.module, line 439
An API module providing by-user access control lists.

Code

function _acl_format_account_name($account) {
  return check_plain(format_username($account));
}