diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-16 15:05:07 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-16 15:05:07 +0200 |
commit | aca4207a94200ce4033de57baabc69afe5e3804e (patch) | |
tree | 9a1396ae2db7fb5e030332b947281bbbb1390ba6 /app/common.php | |
parent | 1c295d4d653dd183dcaa2f1203d9461e5c0fcb6e (diff) |
Don't load Javascript assets for public board access
Diffstat (limited to 'app/common.php')
-rw-r--r-- | app/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/common.php b/app/common.php index 0ba7df9d..1ace3d81 100644 --- a/app/common.php +++ b/app/common.php @@ -29,4 +29,4 @@ $loader->execute(); $registry = new Registry; $registry->db = setup_db(); $registry->event = setup_events(); -$registry->mailer = setup_mailer(); +$registry->mailer = function() { return setup_mailer(); }; |