@@ -38,6 +38,9 @@ ownCloud admins and users.
3838
3939## Summary
4040
41+ * Bugfix - Fix subadmin email change updating caller's address instead of target's: [#41574](https://github.com/owncloud/core/pull/41574)
42+ * Bugfix - Adjust code to avoid PHP8 messages: [#41597](https://github.com/owncloud/core/pull/41597)
43+ * Bugfix - Support federation between systems in subdirectories: [#41599](https://github.com/owncloud/core/pull/41599)
4144* Change - Update M$ Office icons: [#41347](https://github.com/owncloud/core/pull/41347)
4245* Change - No longer store auto loader information in any memory cache: [#41376](https://github.com/owncloud/core/pull/41376)
4346* Change - Update PHP dependencies: [#41450](https://github.com/owncloud/core/pull/41450)
@@ -47,6 +50,34 @@ ownCloud admins and users.
4750
4851## Details
4952
53+ * Bugfix - Fix subadmin email change updating caller's address instead of target's: [#41574](https://github.com/owncloud/core/pull/41574)
54+
55+ The verification token and confirmation link in the subadmin path of
56+ setMailAddress were associated with the caller's account instead of the target
57+ user's account. Clicking the confirmation link changed the subadmin's email
58+ rather than the intended target's email.
59+
60+ https://github.com/owncloud/core/pull/41574
61+
62+ * Bugfix - Adjust code to avoid PHP8 messages: [#41597](https://github.com/owncloud/core/pull/41597)
63+
64+ Avoid trying to access array offset on false in the encryption storage wrapper.
65+
66+ Handle passing null to normalizeUrl in the federation DbHandler.
67+
68+ https://github.com/owncloud/core/pull/41597
69+
70+ * Bugfix - Support federation between systems in subdirectories: [#41599](https://github.com/owncloud/core/pull/41599)
71+
72+ If a federated server was installed in a subdirectory like:
73+
74+ Mydomain.com/cloud
75+
76+ Then checks to see that the server is up and responding would fail. This problem
77+ has been corrected.
78+
79+ https://github.com/owncloud/core/pull/41599
80+
5081* Change - Update M$ Office icons: [#41347](https://github.com/owncloud/core/pull/41347)
5182
5283 Icons have been updated according to the M$ cloud storage partner program
0 commit comments