You are here

function spaces_theme_registry_alter in Spaces 6

Implementation of hook_theme_registry_alter().

File

./spaces.module, line 173

Code

function spaces_theme_registry_alter(&$theme_registry) {
  if (!in_array('spaces_preprocess_page', $theme_registry['page']['preprocess functions'])) {
    $theme_registry['page']['preprocess functions'][] = 'spaces_preprocess_page';
  }
}