You are here

function spaces_access_denied in Spaces 6.2

Same name and namespace in other branches
  1. 6 spaces.module \spaces_access_denied()

Menu callback for early access_denied calls. Going through the a menu callback allows Drupal bootstrap to complete.

1 string reference to 'spaces_access_denied'
spaces_menu in ./spaces.module
Implementation of hook_menu().

File

./spaces.module, line 219

Code

function spaces_access_denied() {
  drupal_access_denied();
  exit;
}