AlexT
Well-known member
Very minor...
In XenForo_ReportHandler_Abstract->getContentForThread(),
should be
since $this->getContentLink() already prepends its part of the URL with a splash.
In XenForo_ReportHandler_Abstract->getContentForThread(),
PHP:
'link' => XenForo_Application::getOptions()->boardUrl . '/' . $this->getContentLink($report, $contentInfo),
should be
PHP:
'link' => XenForo_Application::getOptions()->boardUrl . $this->getContentLink($report, $contentInfo),
since $this->getContentLink() already prepends its part of the URL with a splash.