Make WordPress Core


Ignore:
Timestamp:
01/11/2023 01:57:17 PM (3 years ago)
Author:
audrasjb
Message:

Docs: Align spelling with American English.

This changeset updates the use of "-ise" suffix to American English "-ize" in various files.

Follow-up to [54663], [54664], [55043], [55044].

Props kebbet, mukesh27.
See #56811, #56792.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-mail.php

    r54866 r55051  
    148148            if ( preg_match( '/Date: /i', $line ) ) { // Of the form '20 Mar 2002 20:32:37 +0100'.
    149149                $ddate = str_replace( 'Date: ', '', trim( $line ) );
    150                 // Remove parenthesised timezone string if it exists, as this confuses strtotime().
     150                // Remove parenthesized timezone string if it exists, as this confuses strtotime().
    151151                $ddate           = preg_replace( '!\s*\(.+\)\s*$!', '', $ddate );
    152152                $ddate_timestamp = strtotime( $ddate );
Note: See TracChangeset for help on using the changeset viewer.