Make WordPress Core


Ignore:
Timestamp:
06/12/2015 05:47:16 PM (8 years ago)
Author:
wonderboymusic
Message:

$status shouldn't be loosely compared to true in wp_xmlrpc_server::wp_deleteComment().
$initial shouldn't be loosely compared to true in get_calendar().
current_user_can() shouldn't be loosely compared to false in kses_init()
$get_all shouldn't be loosely compared to true in get_blog_details().
is_array() and in_array() shouldn't be loosely compared in wpmu_validate_user_signup().
$result should by strictly compared in check_ajax_referer().
wp_verify_nonce() should by strictly compared in _show_post_preview().
is_user_logged_in() should not be loosly compared against false in wp-signup.php.

See #32444.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/customize/setting.php

    r31707 r32733  
    380380        $this->manager->set_post_value( $name, $post_value );
    381381        $setting = new WP_Customize_Setting( $this->manager, $name, compact( 'type' ) );
    382         $this->assertNull( $setting->is_current_blog_previewed() );
     382        $this->assertFalse( $setting->is_current_blog_previewed() );
    383383        $setting->preview();
    384384        $this->assertTrue( $setting->is_current_blog_previewed() );
Note: See TracChangeset for help on using the changeset viewer.