mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 17:02:03 +02:00
NOBUG: Add upgrade notes
This commit is contained in:
parent
28b0ca8d9b
commit
7c0745a539
12
UPGRADING.md
12
UPGRADING.md
@ -202,6 +202,18 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
|
||||
|
||||
For more information see [MDL-84593](https://tracker.moodle.org/browse/MDL-84593)
|
||||
|
||||
#### Fixed
|
||||
|
||||
- url class now correctly supports multi level query parameter parsing and output.
|
||||
|
||||
This was previously supported in some methods such as get_query_string, but not others. This has been fixed to be properly supported.
|
||||
|
||||
For example https://example.moodle.net?test[2]=a&test[0]=b will be parsed as ['test' => [2 => 'a', 0 => 'b']]
|
||||
|
||||
All parameter values that are not arrays are casted to strings.
|
||||
|
||||
For more information see [MDL-77293](https://tracker.moodle.org/browse/MDL-77293)
|
||||
|
||||
### core_adminpresets
|
||||
|
||||
#### Removed
|
||||
|
@ -194,6 +194,18 @@
|
||||
|
||||
For more information see [MDL-84593](https://tracker.moodle.org/browse/MDL-84593)
|
||||
|
||||
### Fixed
|
||||
|
||||
- url class now correctly supports multi level query parameter parsing and output.
|
||||
|
||||
This was previously supported in some methods such as get_query_string, but not others. This has been fixed to be properly supported.
|
||||
|
||||
For example https://example.moodle.net?test[2]=a&test[0]=b will be parsed as ['test' => [2 => 'a', 0 => 'b']]
|
||||
|
||||
All parameter values that are not arrays are casted to strings.
|
||||
|
||||
For more information see [MDL-77293](https://tracker.moodle.org/browse/MDL-77293)
|
||||
|
||||
## 4.5
|
||||
|
||||
### Added
|
||||
|
Loading…
x
Reference in New Issue
Block a user