diff --git a/protected/humhub/docs/CHANGELOG.md b/protected/humhub/docs/CHANGELOG.md index 94cfde9a43..db627618fc 100644 --- a/protected/humhub/docs/CHANGELOG.md +++ b/protected/humhub/docs/CHANGELOG.md @@ -9,6 +9,7 @@ HumHub Change Log - Fix #3359: Weekly summary e-mails are not sent in default configuration - Fix #3365: Legacy richtext emojis not parsed in richtext preview - Fix: Friendship button adds additional spaces +- Fix: SpaceController::actionHome throws 403 Http error for guests 1.3.7 (October 23, 2018) diff --git a/protected/humhub/modules/space/controllers/SpaceController.php b/protected/humhub/modules/space/controllers/SpaceController.php index 6e4a64638a..41616b0aca 100644 --- a/protected/humhub/modules/space/controllers/SpaceController.php +++ b/protected/humhub/modules/space/controllers/SpaceController.php @@ -43,7 +43,7 @@ class SpaceController extends ContentContainerController return [ 'acl' => [ 'class' => AccessControl::class, - 'guestAllowedActions' => ['index', 'stream'] + 'guestAllowedActions' => ['index', 'home', 'stream'] ] ]; }