致命错误:调用非对象上的成员函数 Show_LastRec_Pack()


Fatal error: Call to a member function Show_LastRec_Pack() on a non-object

已经

5天了,仍然无法弄清楚问题出在哪里! 所以我在这里发布错误和整个代码。希望有人能帮忙!我将不胜感激。

Fatal error: Call to a member function Show_LastRec_Pack() on a non-object in packgames.php on line 69

这是"包装游戏.php":

<?
/**
 * Block Last Rec Pack
 **/
define ('PACK_GAMES_TO_SHOW', 3);
require_once ('recmod/constants.php');
$query = "SELECT r.*, pp.topic_id, p.Nick, b.*, p.Rating
            FROM " . TABLE_RECGAMES . " r,  " . $this->db->obj['sql_tbl_prefix'] . "attachments a, " . $this->db->obj['sql_tbl_prefix'] . "posts pp,
                " . TABLE_PLAYERS." p, recs_aoc_flags b
            WHERE a.attach_id = r.attach_id 
                AND a.attach_rel_id = pp.pid 
                AND r.Id_Player > 0
                AND p.Id_Player = r.Id_Player
                AND b.flag_id = p.flag_id
            ORDER BY r.Id_RecordedGame DESC
            LIMIT " . PACK_GAMES_TO_SHOW;
$this->DB->query($query);       
$packs = array ();
while ($player = $this->DB->fetch ())
{
    $flag = '<img src="' . PATH_FLAGS . $player['flag_image'] . '" alt="'.$player['flag_country'].'" title="' . $player['flag_country'] . '" align="absmiddle" border="0">';
    $packs[] = array (
      'GAMES' => $player['Players'],
      'PLAYER' => $player['Nick'],
      'FLAG' => $flag,
      'RATING' => $player['Rating'],
      'ID_POST' => $player['topic_id']
    );
}
$tmp = $this->registry->getClass('output')->getTemplate('recgames')->Show_LastRec_Pack ($packs);    
echo $tmp;
?>

无论对象调用模板返回什么,它都不是对象。在调用链上做一些 var_dumps() 并找出返回 null 或其他非对象的位置。最有可能在getTemplate().