xf_phantom
Well-known member
In the Frontcontroller you're using
Shouldn't this be XenForo_Application::getInstance()->loadRequestPaths() ?
I'm NOT 100% sure
What i wanted to achieve is to overwrite the requestPaths with an event listener on init_dependencies
It ended now with a own frontcontroller, but it's still strange that it's not using XenForo_Application::get('requestPaths');
PHP:
public function setRequestPaths()
{
$requestPaths = XenForo_Application::getRequestPaths($this->_request);
XenForo_Application::set('requestPaths', $requestPaths);
}
I'm NOT 100% sure
What i wanted to achieve is to overwrite the requestPaths with an event listener on init_dependencies
It ended now with a own frontcontroller, but it's still strange that it's not using XenForo_Application::get('requestPaths');