Coding Standards: Use strict comparison in wp-includes/rewrite.php.

Follow-up to [6614], [13689], [19743].

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


git-svn-id: http://core.svn.wordpress.org/trunk@55720 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-07-11 11:15:27 +00:00
parent 6af968ab6d
commit 59a793ac9d
2 changed files with 4 additions and 3 deletions

View File

@ -210,7 +210,8 @@ function add_permastruct( $name, $struct, $args = array() ) {
if ( ! is_array( $args ) ) { if ( ! is_array( $args ) ) {
$args = array( 'with_front' => $args ); $args = array( 'with_front' => $args );
} }
if ( func_num_args() == 4 ) {
if ( func_num_args() === 4 ) {
$args['ep_mask'] = func_get_arg( 3 ); $args['ep_mask'] = func_get_arg( 3 );
} }
@ -602,7 +603,7 @@ function url_to_postid( $url ) {
* If the requesting file is the anchor of the match, * If the requesting file is the anchor of the match,
* prepend it to the path info. * prepend it to the path info.
*/ */
if ( ! empty( $url ) && ( $url != $request ) && str_starts_with( $match, $url ) ) { if ( ! empty( $url ) && ( $url !== $request ) && str_starts_with( $match, $url ) ) {
$request_match = $url . '/' . $request; $request_match = $url . '/' . $request;
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.3-beta3-56207'; $wp_version = '6.3-beta3-56208';
/** /**
* 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.