Make WordPress Core


Ignore:
Timestamp:
09/26/2025 09:08:52 PM (6 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Move specific sniff exclusions for getID3 to the config file.

This aims to make future updates of the library easier.

Follow-up to [47735], [47737], [47902].

See #63168.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ID3/module.audio-video.quicktime.php

    r56975 r60800  
    145145                $ISO6709parsed = array('latitude'=>false, 'longitude'=>false, 'altitude'=>false);
    146146                if (preg_match('#^([\\+\\-])([0-9]{2}|[0-9]{4}|[0-9]{6})(\\.[0-9]+)?([\\+\\-])([0-9]{3}|[0-9]{5}|[0-9]{7})(\\.[0-9]+)?(([\\+\\-])([0-9]{3}|[0-9]{5}|[0-9]{7})(\\.[0-9]+)?)?/$#', $ISO6709string, $matches)) {
    147                     // phpcs:ignore PHPCompatibility.Lists.AssignmentOrder.Affected
    148147                    @list($dummy, $lat_sign, $lat_deg, $lat_deg_dec, $lon_sign, $lon_deg, $lon_deg_dec, $dummy, $alt_sign, $alt_deg, $alt_deg_dec) = $matches;
    149148
Note: See TracChangeset for help on using the changeset viewer.