Make WordPress Core


Ignore:
Timestamp:
01/31/2015 02:11:46 AM (10 years ago)
Author:
SergeyBiryukov
Message:

Remove redundant parameter.

see #30753.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/functions.php

    r31310 r31311  
    4747     */
    4848    function test_wp_parse_args_boolean_strings() {
    49         $args = wp_parse_args( 'foo=false&bar=true', array() );
     49        $args = wp_parse_args( 'foo=false&bar=true' );
    5050        $this->assertInternalType( 'string', $args['foo'] );
    5151        $this->assertInternalType( 'string', $args['bar'] );
Note: See TracChangeset for help on using the changeset viewer.