Changeset 55051
- Timestamp:
- 01/11/2023 01:57:17 PM (2 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r54929 r55051 4729 4729 * 4730 4730 * @param string $option The name of the option. 4731 * @param string $value The unsaniti sed value.4731 * @param string $value The unsanitized value. 4732 4732 * @return string Sanitized value. 4733 4733 */ -
trunk/src/wp-includes/general-template.php
r54932 r55051 11 11 * 12 12 * Includes the header template for a theme or if a name is specified then a 13 * speciali sed header will be included.13 * specialized header will be included. 14 14 * 15 15 * For the parameter, if the file is called "header-special.php" then specify … … 20 20 * @since 5.5.0 The `$args` parameter was added. 21 21 * 22 * @param string $name The name of the speciali sed header.22 * @param string $name The name of the specialized header. 23 23 * @param array $args Optional. Additional arguments passed to the header template. 24 24 * Default empty array. … … 55 55 * 56 56 * Includes the footer template for a theme or if a name is specified then a 57 * speciali sed footer will be included.57 * specialized footer will be included. 58 58 * 59 59 * For the parameter, if the file is called "footer-special.php" then specify … … 64 64 * @since 5.5.0 The `$args` parameter was added. 65 65 * 66 * @param string $name The name of the speciali sed footer.66 * @param string $name The name of the specialized footer. 67 67 * @param array $args Optional. Additional arguments passed to the footer template. 68 68 * Default empty array. … … 99 99 * 100 100 * Includes the sidebar template for a theme or if a name is specified then a 101 * speciali sed sidebar will be included.101 * specialized sidebar will be included. 102 102 * 103 103 * For the parameter, if the file is called "sidebar-special.php" then specify … … 108 108 * @since 5.5.0 The `$args` parameter was added. 109 109 * 110 * @param string $name The name of the speciali sed sidebar.110 * @param string $name The name of the specialized sidebar. 111 111 * @param array $args Optional. Additional arguments passed to the sidebar template. 112 112 * Default empty array. … … 146 146 * 147 147 * Includes the named template part for a theme or if a name is specified then a 148 * speciali sed part will be included. If the theme contains no {slug}.php file148 * specialized part will be included. If the theme contains no {slug}.php file 149 149 * then no template will be included. 150 150 * … … 160 160 * 161 161 * @param string $slug The slug name for the generic template. 162 * @param string $name The name of the speciali sed template.162 * @param string $name The name of the specialized template. 163 163 * @param array $args Optional. Additional arguments passed to the template. 164 164 * Default empty array. -
trunk/src/wp-mail.php
r54866 r55051 148 148 if ( preg_match( '/Date: /i', $line ) ) { // Of the form '20 Mar 2002 20:32:37 +0100'. 149 149 $ddate = str_replace( 'Date: ', '', trim( $line ) ); 150 // Remove parenthesi sed timezone string if it exists, as this confuses strtotime().150 // Remove parenthesized timezone string if it exists, as this confuses strtotime(). 151 151 $ddate = preg_replace( '!\s*\(.+\)\s*$!', '', $ddate ); 152 152 $ddate_timestamp = strtotime( $ddate );
Note: See TracChangeset
for help on using the changeset viewer.