mirror of
https://github.com/moodle/moodle.git
synced 2025-02-25 12:33:18 +01:00
11 lines
624 B
YAML
11 lines
624 B
YAML
issueNumber: MDL-82687
|
|
notes:
|
|
core_form:
|
|
- message:
|
|
Previously, the 'duration' form field type would allow users to input positive or negative durations.
|
|
However looking at all the uses, everyone was expecting this input type to only accept times >= 0 seconds,
|
|
and almost no-one was bothering to write manual form validation, leading to subtle bugs.
|
|
So now, by default this field type will validate the input value is not negative. If you need the
|
|
previous behaviour, there is a new option 'allownegative' which you can set to true. (The default is false.)
|
|
type: improved
|