Coding Standards: Use strict comparison in `wp-includes/class-wp-simplepie-file.php`.

Follow-up to [10687].

Props aristath, poena, afercia, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@56158


git-svn-id: http://core.svn.wordpress.org/trunk@55670 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-07-07 06:42:25 +00:00
parent 974d2e18ec
commit d6e978dba3
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ class WP_SimplePie_File extends SimplePie_File {
$args['headers'] = $this->headers; $args['headers'] = $this->headers;
} }
if ( SIMPLEPIE_USERAGENT != $this->useragent ) { // Use default WP user agent unless custom has been specified. if ( SIMPLEPIE_USERAGENT !== $this->useragent ) { // Use default WP user agent unless custom has been specified.
$args['user-agent'] = $this->useragent; $args['user-agent'] = $this->useragent;
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.3-beta3-56157'; $wp_version = '6.3-beta3-56158';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.