. * */ namespace Friendica\Module\Special; use Friendica\Core\Renderer; /** * This is a special case of the HTTPException module where the message is intended to be HTML. * This module should be called directly from the Display module and shouldn't be routed to. */ class DisplayNotFound extends \Friendica\BaseModule { protected function content(array $request = []): string { $tpl = Renderer::getMarkupTemplate('special/displaynotfound.tpl'); return Renderer::replaceMacros($tpl, [ '$l10n' => [ 'title' => $this->t('Not Found'), 'message' => $this->t("

Unfortunately, the requested conversation isn't available to you.

Possible reasons include:

"), ] ]); } }