Skip to content

Commit

Permalink
Fix module enabling from marketplace (#6980)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurabakhtin committed May 1, 2024
1 parent e7aa573 commit 4639b26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG-DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ HumHub Changelog
- Fix #6970: MultiSelect loads wrong options (since #6768 in 1.16.0-beta.1)
- Enh #6974: Highlight a content searching keyword on show more comments
- Fix #6977: Index sub comments for searching
- Fix #6978: Fix module enabling from marketplace

1.16.0-beta.2 (April 9, 2024)
-----------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function activate(): bool

public function enable(): bool
{
return $this->module instanceof CoreModule && $this->module->enable();
return $this->module instanceof CoreModule && $this->module->enable() !== false;
}

public function update(): array
Expand Down

0 comments on commit 4639b26

Please sign in to comment.