Can anyone tell me what's wrong with this .php? I receive an error upon re-loading the page (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; ERROR ON THIS LINE
}
}
?>
<?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; ERROR ON THIS LINE
}
}
?>