You are here

function biblio_view_node in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 includes/biblio.pages.inc \biblio_view_node()
  2. 6 biblio.pages.inc \biblio_view_node()
  3. 7.2 includes/biblio.pages.inc \biblio_view_node()
1 string reference to 'biblio_view_node'
biblio_menu in ./biblio.module
Implements hook_menu().

File

includes/biblio.pages.inc, line 11
Copyright (C) 2006-2011 Ron Jerome.

Code

function biblio_view_node($nid) {
  $options = array();

  // Set a 301 response code.
  drupal_goto('node/' . (int) $nid, $options, 301);
}