Marcus
Well-known member
What could I put between buildLink( ....... ) to make it work? Thank you so much !
I get a lot of errors as XenForo isn't happy about just running buildLink without any parameters.
PHP:
<?php
class VirtualForums_Route_Prefix_Threads extends XFCP_VirtualForums_Route_Prefix_Threads
{
public function buildLink($originalPrefix, $outputPrefix, $action, $extension, $data, array &$extraParams)
{
$response = parent::buildLink();
return $response;
}
}
I get a lot of errors as XenForo isn't happy about just running buildLink without any parameters.