Merge branch 'master' into develop

This commit is contained in:
Lucas Bartholemy 2022-07-16 12:19:14 +02:00
commit dde34bbe6b
2 changed files with 10 additions and 3 deletions

View File

@ -1,12 +1,18 @@
HumHub Changelog
================
1.11.4 (Unreleased)
----------------------
1.11.4 (July 6, 2022)
---------------------
This release also fixes a [security](https://github.com/humhub/humhub/security/advisories/GHSA-p7h3-73v7-959c) issue.
HumHub was vulnerable to a stored Cross-Site Scripting (XSS) vulnerability. For exploitation, the user would need a permission to administer Spaces.
An update is STRONGLY recommended.
- Fix #5776: Hide beta modules on disabled filter
- Fix #5799: Incorrect selection when multiple custom filters are in place
- Fix #5780: Don't hide icon "remove item" on picker
- Fix #5800: Hide data of disabled users on picker filters on "People" page
- Fix #5791: Fix XSS in membership confirmation
1.11.3 (June 27, 2022)
----------------------

View File

@ -26,9 +26,10 @@ class LoginPage extends BasePage
$this->actor->fillField('Login[password]', $password);
$this->actor->click('#login-button');
}
public function selfInvite($email)
{
$this->actor->fillField('Invite[email]', $email);
$this->actor->submitForm('#invite-form', ['Invite' => [
'email' => $email
]]);