AndyB
Well-known member
In XF1 I extended the following:
What function is equivalent code be in XF2?
Thank you.
PHP:
<?php
class Andy_FirstPost_ControllerPublic_Thread extends XFCP_Andy_FirstPost_ControllerPublic_Thread
{
public function _assertCanReplyToThread(array $thread, array $forum)
{
// get parent
$parent = parent::_assertCanReplyToThread($thread, $forum);
What function is equivalent code be in XF2?
Thank you.