路由错误,请检查是否存在该函数。

118.  etLaunch("router_prefilter");
119.  $handle_controller etClass($__controllernull$GLOBALS['G_ET']["controller_path"].'/'.$__controller.".php");
120.  // 调用控制器出错将调用路由错误处理函数
121.  if(!is_object($handle_controller) || !method_exists($handle_controller$__action))
122.  {
123.      eval($GLOBALS['G_ET']["dietatcher_error"]);
124.      exit;
125.  }
126. 
127.  // 执行用户代码
128.  $handle_controller->$__action();
30.          'auto_display' => FALSE// 是否使用自动输出模板功能
31.          'auto_display_sep' => '/'// 自动输出模板的拼装模式,/为按目录方式拼装,_为按下划线方式,以此类推
32.          'auto_display_suffix' => '.html'// 自动输出模板的后缀名
33.      ),
34.  );
35.  require(ET_PATH."/etApps.php");