Skip to content

Commit

Permalink
Hide beta modules on disabled filter (#5777)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurabakhtin committed Jun 28, 2022
1 parent 555c581 commit fe5c3b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
HumHub Changelog
================

1.11.4 (Unreleased)
----------------------
- Fix #5776: Hide beta modules on disabled filter

1.11.3 (June 27, 2022)
----------------------
- Fix: #5736: Fix status message on user approval
Expand Down
Expand Up @@ -300,6 +300,7 @@ public function getNotInstalledModules(): array
foreach ($modules as $o => $module) {
$onlineModule = new ModelModule($module);
if ($onlineModule->isInstalled() ||
!$onlineModule->latestCompatibleVersion ||
($onlineModule->isDeprecated && $marketplaceModule->hideLegacyModules)) {
unset($modules[$o]);
continue;
Expand Down

0 comments on commit fe5c3b5

Please sign in to comment.