訂正箇所:
第12章、329ページのコードブロック内下部
誤:
/**
* hook_search_page()の実装
*/
function pathfinder_search_page($rows) {
$header = array(
array('data' => t('Alias'), 'field' => 'dst'), ('Operations'));
正:
/**
* hook_search_page()の実装
*/
function pathfinder_search_page($rows) {
$header = array(
array('data' => t('Alias'), 'field' => 'dst'), t('Operations'));
説明:
t('Operations') の t が抜けていました。