Make WordPress Core

Changeset 59748


Ignore:
Timestamp:
01/31/2025 09:52:07 PM (19 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Replace loose comparison in wp_xmlrpc_server::wp_setOptions().

Follow-up to [8114].

Props aristath, poena, afercia, SergeyBiryukov.
See #62279.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r59738 r59748  
    43314331                        }
    43324332
    4333                         if ( true == $this->blog_options[ $o_name ]['readonly'] ) {
     4333                        if ( $this->blog_options[ $o_name ]['readonly'] ) {
    43344334                                continue;
    43354335                        }
Note: See TracChangeset for help on using the changeset viewer.