Fixed Wrong phrase name

TickTackk

Well-known member
Inside controller XenForo_ControllerPublic_Tag and under action Tag
PHP:
        if (!$tag)
        {
            return $this->responseError(new XenForo_Phrase('requested_page_not_found'), 404);
        }
should be
PHP:
        if (!$tag)
        {
            return $this->responseError(new XenForo_Phrase('requested_tag_not_found'), 404);
        }
 
The existing value isn't actually incorrect. We do use this as a generic not found error. Given that we do have this phrase though, I have adjusted this.
 
Top Bottom