Merge branch 'MDL-85362-main' of https://github.com/HuongNV13/moodle

This commit is contained in:
Michael Hawkins
2025-07-31 14:33:51 +08:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ jobs:
if: ${{ matrix.db == 'pgsql' }}
uses: m4nu56/postgresql-action@v1
with:
postgresql version: 14
postgresql version: 15
postgresql db: test
postgresql user: test
postgresql password: test
+1 -1
View File
@@ -4909,7 +4909,7 @@
<DATABASE level="required">
<VENDOR name="mariadb" version="10.11.0" />
<VENDOR name="mysql" version="8.4" />
<VENDOR name="postgres" version="14" />
<VENDOR name="postgres" version="15" />
<VENDOR name="mssql" version="14.0" />
<VENDOR name="auroramysql" version="8.0" />
</DATABASE>
+1 -1
View File
@@ -49,7 +49,7 @@ function moodle_minimum_php_version_is_met($haltexecution = false) {
// Do not use modern php features or Moodle convenience functions (e.g. localised strings).
$minimumversion = '8.2.0';
$moodlerequirementchanged = '5.0';
$moodlerequirementchanged = '5.1';
if (version_compare(PHP_VERSION, $minimumversion) < 0) {
if ($haltexecution) {