You are here

function biblio_preprocess_page in Bibliography Module 6.2

Implements hook_preprocess_page for page display with page.tpl.php.

File

./biblio.module, line 2647
Main file for Drupal module biblio.

Code

function biblio_preprocess_page(&$variables) {
  if (isset($variables['node']) && $variables['node']->type == 'biblio') {
    $node = $variables['node'];
    $variables['title'] = filter_xss($node->title, biblio_get_allowed_tags());
  }
}