Changeset 55703 for trunk/src/wp-admin/includes/credits.php
- Timestamp:
- 05/02/2023 03:43:03 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/credits.php
r51920 r55703 34 34 if ( ! is_array( $results ) 35 35 || false !== strpos( $version, '-' ) 36 || ( isset( $results['data']['version'] ) && strpos( $version, $results['data']['version'] ) !== 0)36 || ( isset( $results['data']['version'] ) && ! str_starts_with( $version, $results['data']['version'] ) ) 37 37 ) { 38 38 $url = "http://api.wordpress.org/core/credits/1.1/?version={$version}&locale={$locale}";
Note: See TracChangeset
for help on using the changeset viewer.