Make WordPress Core

Changeset 31086


Ignore:
Timestamp:
01/08/2015 06:13:05 AM (10 years ago)
Author:
wonderboymusic
Message:

PHP keywords and constants "true", "false", "null" should be in lower case - there was one lingering capitalized false in _http_build_query().

See #30799.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r31052 r31086  
    704704        if ( $v === null )
    705705            continue;
    706         elseif ( $v === FALSE )
     706        elseif ( $v === false )
    707707            $v = '0';
    708708
Note: See TracChangeset for help on using the changeset viewer.