Skip to content

Commit bb07250

Browse files
Coding Standards: Replace loose comparison in wp_xmlrpc_server::wp_setOptions().
Follow-up to [8114]. Props aristath, poena, afercia, SergeyBiryukov. See #62279. git-svn-id: https://develop.svn.wordpress.org/trunk@59748 602fd350-edb4-49c9-b593-d223f7449a82
1 parent c5755be commit bb07250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/class-wp-xmlrpc-server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4330,7 +4330,7 @@ public function wp_setOptions( $args ) {
43304330
continue;
43314331
}
43324332

4333-
if ( true == $this->blog_options[ $o_name ]['readonly'] ) {
4333+
if ( $this->blog_options[ $o_name ]['readonly'] ) {
43344334
continue;
43354335
}
43364336

0 commit comments

Comments
 (0)