Definition

message_access()
drupal-4-6/includes/common.inc, line 469

Description

Return a string with an "access denied" message.

Always consider whether to use drupal_access_denied() instead to return a proper (and customizable) 403 error.

Code

function message_access() {
  return t('You are not authorized to access this page.');
}