初めての投稿は、通常、他の回答済みの質問から助けを得るために潜んでいるだけなので、ご協力いただきありがとうございます!
簡単な質問があります。フォーラムベースのアドオンをインストールしていますが、次のようになります。
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);
私はこれをコーディングしませんでした。私の唯一の希望は、この問題を修正してフォーラムを使用できるようにすることです。そうしないと、このアドオンを使用できません :(
前もって感謝します!