From: Philipp Date: Wed, 17 Nov 2021 12:39:48 +0000 (+0100) Subject: Hotfix: Deleted content X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=de6bb280b103a82f0a693649d5fabfccc2518b54;p=friendica.git Hotfix: Deleted content --- diff --git a/src/App/Page.php b/src/App/Page.php index f410f6aa28..c1a0e4aa54 100644 --- a/src/App/Page.php +++ b/src/App/Page.php @@ -352,6 +352,7 @@ class Page implements ArrayAccess $arr = ['content' => $content]; Hook::callAll($moduleClass->getClassName() . '_mod_content', $arr); $content = $arr['content']; + $content .= $module->getModule()->content(); } catch (HTTPException $e) { $content = (new ModuleHTTPException())->content($e); }