Fatal error: Call to a member function on a non-object in D:\plog\tmp\summary\%%958^%%958576606^post.template.php on line 29
--------------
line 29———— <?php echo $this->_tpl_vars['postOwner']->getUsername(); ?>
帮助看一下,谢谢
不太對!這樣看起來是你的 summary/post.template 中的
{$postOwner->getUsername()} 發生錯誤!
可是這應該是不會有這樣錯誤訊息,這代表的是你的文章中的 user 沒有資料,所以抓不到 user 的物件,當然就無法使用->getUsername() 來抓取使用者的名稱。
你能看一下資料庫裡面 plog_articles 的 user_id 有沒有資料?
Mark