-
Task
-
Resolution: Fixed
-
Minor
-
4.1.9, 4.2.6, 4.3.3, 4.4
It seems that, since Moodle 3.7, we have forgotten to update the moodle_minimum_php_version_is_met() function values to actual ones.
That function is executed BEFORE the environment stuff, by different scripts (see moodle_require_minimum_php_version() uses, namely: install, cli install, install database and admin index.
Right now, it's showing, since MDL-63276, the following (clearly outdated) values:
$minimumversion = '7.1.0';
|
$moodlerequirementchanged = '3.7';
|
So this issue is about to:
For all supported (security included) branches, find which are the correct values.
Provide a patch with them fixed. Test, test.
Ensure that, in the "Moodle X.Y requirements" issues/epics we don't forget about to, always, check if a change like the ones performed here are needed. (done commented as TODO-5.3 @
MDL-79809, so future clones of it should, always, include the point).
Ciao