Jake B.
Well-known member
I am having issues extending the actionSave function in the XenForo_ControllerAdmin_Forum controller.
Here is what I have:
Also, I extended actionEdit, and it works perfectly fine. actionSave throws this error when I try to save the forum:
Here is what I have:
Code:
<?php
class Dev_AddonName_ControllerAdmin_Forum extends XFCP_Dev_AddonName_ControllerAdmin_Forum
{
public function actionSave()
{
//$this->_assertPostOnly();
return parent::actionSave();
}
}
Also, I extended actionEdit, and it works perfectly fine. actionSave throws this error when I try to save the forum:
No controller response from XenForo_ControllerAdmin_Forum::actionSave
- XenForo_FrontController->_handleControllerResponse() inE:\xampp\htdocs\xenStop\library\XenForo\FrontController.php at line 355
- XenForo_FrontController->dispatch() in E:\xampp\htdocs\xenStop\library\XenForo\FrontController.php at line 134
- XenForo_FrontController->run() in E:\xampp\htdocs\xenStop\admin.php at line 13