Remove afterpost() handling

This commit is contained in:
Philipp
2021-11-16 21:14:20 +01:00
parent 85304b6e8f
commit 8f741c8b78
7 changed files with 0 additions and 27 deletions

View File

@@ -352,9 +352,6 @@ class Page implements ArrayAccess
$arr = ['content' => $content];
Hook::callAll($moduleClass->getClassName() . '_mod_content', $arr);
$content = $arr['content'];
$arr = ['content' => $moduleClass->content()];
Hook::callAll($moduleClass->getClassName() . '_mod_aftercontent', $arr);
$content .= $arr['content'];
} catch (HTTPException $e) {
$content = (new ModuleHTTPException())->content($e);
}