警告:缺少函数 abc() 的参数 1
function ort_view_menu() {
$items['thick_box_view'] = array(
'title' => 'Viewed Details',
'description' => 'g a report',
'page callback' => 'abc',
'type' => MENU_CALLBACK,
'access callback' => TRUE,
);
return $items;
}
function abc($nid) {
$rows = array();
$node = node_load($nid);
错误是由于函数中使用了 $nid 引起的吗?