Changeset 52640
- Timestamp:
- 01/25/2022 01:54:01 PM (20 months ago)
- Location:
- trunk/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-ssh2.php
r52332 r52640 27 27 * Check phpinfo() streams to confirm that: ssh2.shell, ssh2.exec, ssh2.tunnel, ssh2.scp, ssh2.sftp exist. 28 28 * 29 * Note: As of WordPress 2.8, this utili ses the PHP5+ function `stream_get_contents()`.29 * Note: As of WordPress 2.8, this utilizes the PHP5+ function `stream_get_contents()`. 30 30 * 31 31 * @since 2.7.0 -
trunk/src/wp-admin/includes/file.php
r52610 r52640 1396 1396 // Allow for an old version of Sodium_Compat being loaded before the bundled WordPress one. 1397 1397 if ( method_exists( 'ParagonIE_Sodium_Compat', 'runtime_speed_test' ) ) { 1398 // Run `ParagonIE_Sodium_Compat::runtime_speed_test()` in optimized integer mode, as that's what WordPress utilises during signing verifications. 1398 /* 1399 * Run `ParagonIE_Sodium_Compat::runtime_speed_test()` in optimized integer mode, 1400 * as that's what WordPress utilizes during signing verifications. 1401 */ 1399 1402 // phpcs:disable WordPress.NamingConventions.ValidVariableName 1400 1403 $old_fastMult = ParagonIE_Sodium_Compat::$fastMult; -
trunk/src/wp-admin/includes/update-core.php
r52637 r52640 984 984 /* 985 985 * Import $wp_version, $required_php_version, and $required_mysql_version from the new version. 986 * DO NOT globali se any variables imported from `version-current.php` in this function.986 * DO NOT globalize any variables imported from `version-current.php` in this function. 987 987 * 988 988 * BC Note: $wp_filesystem->wp_content_dir() returned unslashed pre-2.8. -
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r51790 r52640 590 590 $this->image->rotateImage( new ImagickPixel( 'none' ), 360 - $angle ); 591 591 592 // Normali se EXIF orientation data so that display is consistent across devices.592 // Normalize EXIF orientation data so that display is consistent across devices. 593 593 if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) { 594 594 $this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT ); … … 628 628 } 629 629 630 // Normali se EXIF orientation data so that display is consistent across devices.630 // Normalize EXIF orientation data so that display is consistent across devices. 631 631 if ( is_callable( array( $this->image, 'setImageOrientation' ) ) && defined( 'Imagick::ORIENTATION_TOPLEFT' ) ) { 632 632 $this->image->setImageOrientation( Imagick::ORIENTATION_TOPLEFT ); -
trunk/src/wp-includes/class-wp-rewrite.php
r51518 r52640 1174 1174 // Not matching a permalink so this is a lot simpler. 1175 1175 } else { 1176 // Close the match and finali se the query.1176 // Close the match and finalize the query. 1177 1177 $match .= '?$'; 1178 1178 $query = $index . '?' . $query; -
trunk/src/wp-includes/formatting.php
r52457 r52640 4696 4696 4697 4697 /** 4698 * Saniti ses various option values based on the nature of the option.4698 * Sanitizes various option values based on the nature of the option. 4699 4699 * 4700 4700 * This is basically a switch statement which will pass $value through a number -
trunk/src/wp-includes/functions.php
r52628 r52640 2141 2141 } 2142 2142 2143 // Standardi se all paths to use '/'.2143 // Standardize all paths to use '/'. 2144 2144 $path = str_replace( '\\', '/', $path ); 2145 2145 -
trunk/src/wp-includes/pomo/po.php
r51919 r52640 172 172 } 173 173 174 // Standardi se the line endings on imported content, technically PO files shouldn't contain \r.174 // Standardize the line endings on imported content, technically PO files shouldn't contain \r. 175 175 $unpoified = str_replace( array( "\r\n", "\r" ), "\n", $unpoified ); 176 176 -
trunk/src/wp-includes/rest-api/class-wp-rest-response.php
r52578 r52640 279 279 * into `example:term`. 280 280 * 281 * Well-behaved clients should expand and normali se these back to their281 * Well-behaved clients should expand and normalize these back to their 282 282 * full URI relation, however some naive clients may not resolve these 283 283 * correctly, so adding new CURIEs may break backward compatibility. -
trunk/src/wp-includes/rest-api/class-wp-rest-server.php
r52204 r52640 850 850 $endpoints = apply_filters( 'rest_endpoints', $endpoints ); 851 851 852 // Normali se the endpoints.852 // Normalize the endpoints. 853 853 $defaults = array( 854 854 'methods' => '',
Note: See TracChangeset
for help on using the changeset viewer.