Changeset 59956
- Timestamp:
- 03/09/2025 03:15:05 PM (7 weeks ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/upgrade-develop-testing.yml
r59815 r59956 64 64 db-type: [ 'mysql' ] 65 65 db-version: [ '5.7', '8.4' ] 66 wp: [ '6.5', '6.6', '6.7' ] 66 # WordPress 4.9 is the oldest version that supports PHP 7.2. 67 wp: [ '4.9', '6.5', '6.6', '6.7' ] 67 68 multisite: [ false, true ] 68 69 … … 71 72 - php: '7.2' 72 73 db-version: '8.4' 74 # WordPress 4.9 does not support PHP 8.4. 75 - php: '8.4' 76 wp: '4.9' 73 77 with: 74 78 os: ${{ matrix.os }} -
trunk/src/wp-admin/includes/update-core.php
r59861 r59956 1200 1200 1201 1201 // Add a warning when required PHP extensions are missing. 1202 if ( $missing_extensions->has_errors() ) {1202 if ( ! empty( $missing_extensions->errors ) ) { 1203 1203 return $missing_extensions; 1204 1204 }
Note: See TracChangeset
for help on using the changeset viewer.