加载drupal网站时出错call_user_func_array()

时间:2016-07-20 21:04:37

标签: php drupal-6

我试图加载我的Drupal(6)网站,我收到了这条消息:

  

警告:call_user_func_array()`期望参数1是有效的回调,函数' _print_mail_access'在第454行的C:\ wamp \ www \ mysite \ includes \ menu.inc中找不到或无效的函数名称。

第454行在此功能中:

function ctools_menu_get_active_help() {
  $output = '';
  $router_path = ctools_menu_tab_root_path();
  // We will always have a path unless we are on a 403 or 404.
  if (!$router_path) {
    return '';
  }

  $arg = drupal_help_arg(arg(NULL));
  $empty_arg = drupal_help_arg();

  foreach (module_list() as $name) {
    if (module_hook($name, 'help')) {
      // Lookup help for this path.
      if ($help = module_invoke($name, 'help', $router_path, $arg)) {
        $output .= $help ."\n";
      }
      // Add "more help" link on admin pages if the module provides a
      // standalone help page.
      if ($arg[0] == "admin" && module_exists('help') && module_invoke($name, 'help', 'admin/help#'. $arg[2], $empty_arg) && $help) {
        $output .= theme("more_help_link", url('admin/help/'. $arg[2]));
      }
    }
  }
  return $output;
}

我做错了什么?

0 个答案:

没有答案