diff options
Diffstat (limited to 'mod/home.php')
-rw-r--r-- | mod/home.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/home.php b/mod/home.php index 53b111bdf..2d646f8dd 100644 --- a/mod/home.php +++ b/mod/home.php @@ -24,6 +24,9 @@ function home_content(&$a) { $o .= file_get_contents('home.html'); $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); + + call_hooks("home_content",$o); + return $o; |