Changeset 55827
- Timestamp:
- 05/19/2023 01:25:49 PM (21 months ago)
- Location:
- trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-pclzip.php
r55757 r55827 633 633 // path_creation_fail : the file is not extracted because the folder 634 634 // does not exist and can not be created 635 // write_error : the file was not extracted because there was a 635 // write_error : the file was not extracted because there was an 636 636 // error while writing the file 637 // read_error : the file was not extracted because there was a error637 // read_error : the file was not extracted because there was an error 638 638 // while reading the file 639 639 // invalid_header : the file was not extracted because of an archive -
trunk/src/wp-admin/includes/file.php
r55822 r55827 1378 1378 } 1379 1379 1380 // Check for a edge-case affecting PHP Maths abilities.1380 // Check for an edge-case affecting PHP Maths abilities. 1381 1381 if ( 1382 1382 ! extension_loaded( 'sodium' ) && -
trunk/src/wp-includes/class-wp-http-cookie.php
r54133 r55827 137 137 $pair = rtrim( $pair ); 138 138 139 // Handle the cookie ending in ; which results in a empty final pair.139 // Handle the cookie ending in ; which results in an empty final pair. 140 140 if ( empty( $pair ) ) { 141 141 continue; -
trunk/src/wp-includes/class-wp-http.php
r55370 r55827 1081 1081 * 1082 1082 * This function also detects the type of the IP address, returning either 1083 * '4' or '6' to represent a IPv4 and IPv6 address respectively.1083 * '4' or '6' to represent an IPv4 and IPv6 address respectively. 1084 1084 * This does not verify if the IP is a valid IP, only that it appears to be 1085 1085 * an IP address. … … 1090 1090 * 1091 1091 * @param string $maybe_ip A suspected IP address. 1092 * @return int|false Upon success, '4' or '6' to represent a IPv4 or IPv6 address, false upon failure1092 * @return int|false Upon success, '4' or '6' to represent an IPv4 or IPv6 address, false upon failure. 1093 1093 */ 1094 1094 public static function is_ip_address( $maybe_ip ) { -
trunk/src/wp-includes/class-wp-oembed.php
r55412 r55827 515 515 516 516 /** 517 * Connects to a oEmbed provider and returns the result.517 * Connects to an oEmbed provider and returns the result. 518 518 * 519 519 * @since 2.9.0 -
trunk/src/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php
r53455 r55827 229 229 $value = false; 230 230 231 // Note that a ID of less than one indicates a nav_menu not yet inserted.231 // Note that an ID of less than one indicates a nav_menu not yet inserted. 232 232 if ( $this->post_id > 0 ) { 233 233 $post = get_post( $this->post_id ); -
trunk/src/wp-includes/media-template.php
r55470 r55827 9 9 10 10 /** 11 * Outputs the markup for a audio tag to be used in an Underscore template11 * Outputs the markup for an audio tag to be used in an Underscore template 12 12 * when data.model is passed. 13 13 * -
trunk/src/wp-includes/media.php
r55825 r55827 3812 3812 || is_resource( $image ) && 'gd' === get_resource_type( $image ) 3813 3813 ) { 3814 3814 3815 return true; 3815 3816 } … … 4862 4863 4863 4864 /** 4864 * Checks the HTML content for a audio, video, object, embed, or iframe tags.4865 * Checks the HTML content for an audio, video, object, embed, or iframe tags. 4865 4866 * 4866 4867 * @since 3.6.0 -
trunk/src/wp-includes/option.php
r55256 r55827 1371 1371 1372 1372 /** 1373 * Removes a option by name for the current network.1373 * Removes an option by name for the current network. 1374 1374 * 1375 1375 * @since 2.8.0
Note: See TracChangeset
for help on using the changeset viewer.