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); }