第一次发帖,通常只是潜伏着从其他回答的问题中寻求帮助,所以非常感谢大家的帮助!
我只是有一个简单的问题。我正在为论坛基地安装一个附加组件,它给了我:
Fatal error: Unsupported operand types in /home/joelwmale/public_html/forums/library/LatestThread/Controller/Public.php on line 13
这里工作的代码是:
<?php
class LatestThread_Controller_Public extends XFCP_LatestThread_Controller_Public
{
public function actionIndex()
{
$response = parent::actionIndex();
if ($response instanceof XenForo_ControllerResponse_View)
{
$LatestThread = LatestThread_Model_TLatestThread::LatestThreadArray();
}
$response->params += array('LatestThread' => $LatestThread);
return $response;
}
}
?>
第 13 行当然是:
$response->params += array('LatestThread' => $LatestThread);
我没有编写这个代码,我唯一的希望是解决这个问题,这样我就可以使用我的论坛,否则我不能使用这个插件:(
先感谢您!