Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.

File:
1 edited

Legend:

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

    r45580 r45590  
    745745        if ( $url != '' && ! $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = 'enclosure' AND meta_value LIKE %s", $post_ID, $wpdb->esc_like( $url ) . '%' ) ) ) {
    746746
    747             if ( $headers = wp_get_http_headers( $url ) ) {
     747            $headers = wp_get_http_headers( $url );
     748            if ( $headers ) {
    748749                $len           = isset( $headers['content-length'] ) ? (int) $headers['content-length'] : 0;
    749750                $type          = isset( $headers['content-type'] ) ? $headers['content-type'] : '';
     
    944945    }
    945946
    946     if ( $frag = strstr( $uri, '#' ) ) {
     947    $frag = strstr( $uri, '#' );
     948    if ( $frag ) {
    947949        $uri = substr( $uri, 0, -strlen( $frag ) );
    948950    } else {
     
    16991701 */
    17001702function wp_original_referer_field( $echo = true, $jump_back_to = 'current' ) {
    1701     if ( ! $ref = wp_get_original_referer() ) {
     1703    $ref = wp_get_original_referer();
     1704    if ( ! $ref ) {
    17021705        $ref = 'previous' == $jump_back_to ? wp_get_referer() : wp_unslash( $_SERVER['REQUEST_URI'] );
    17031706    }
     
    18111814
    18121815    // Get the permission bits.
    1813     if ( $stat = @stat( $target_parent ) ) {
     1816    $stat = @stat( $target_parent );
     1817    if ( $stat ) {
    18141818        $dir_perms = $stat['mode'] & 0007777;
    18151819    } else {
     
    21602164    }
    21612165
    2162     if ( ! $url = get_option( 'upload_url_path' ) ) {
     2166    $url = get_option( 'upload_url_path' );
     2167    if ( ! $url ) {
    21632168        if ( empty( $upload_path ) || ( 'wp-content/uploads' == $upload_path ) || ( $upload_path == $dir ) ) {
    21642169            $url = WP_CONTENT_URL . '/uploads';
     
    26002605            // File is a non-specific binary type. That's ok if it's a type that generally tends to be binary.
    26012606            if ( ! in_array( substr( $type, 0, strcspn( $type, '/' ) ), array( 'application', 'video', 'audio' ) ) ) {
    2602                 $type = $ext = false;
     2607                $type = false;
     2608                $ext  = false;
    26032609            }
    26042610        } elseif ( 0 === strpos( $real_mime, 'video/' ) || 0 === strpos( $real_mime, 'audio/' ) ) {
     
    26092615             */
    26102616            if ( substr( $real_mime, 0, strcspn( $real_mime, '/' ) ) !== substr( $type, 0, strcspn( $type, '/' ) ) ) {
    2611                 $type = $ext = false;
     2617                $type = false;
     2618                $ext  = false;
    26122619            }
    26132620        } elseif ( 'text/plain' === $real_mime ) {
     
    26242631            )
    26252632            ) {
    2626                 $type = $ext = false;
     2633                $type = false;
     2634                $ext  = false;
    26272635            }
    26282636        } elseif ( 'text/rtf' === $real_mime ) {
     
    26372645            )
    26382646            ) {
    2639                 $type = $ext = false;
     2647                $type = false;
     2648                $ext  = false;
    26402649            }
    26412650        } else {
     
    26452654                 * If the real content type doesn't match the file extension, assume it's dangerous.
    26462655                 */
    2647                 $type = $ext = false;
     2656                $type = false;
     2657                $ext  = false;
    26482658            }
    26492659        }
     
    26552665
    26562666        if ( ! in_array( $type, $allowed ) ) {
    2657             $type = $ext = false;
     2667            $type = false;
     2668            $ext  = false;
    26582669        }
    26592670    }
     
    52385249 */
    52395250function wp_timezone_override_offset() {
    5240     if ( ! $timezone_string = get_option( 'timezone_string' ) ) {
     5251    $timezone_string = get_option( 'timezone_string' );
     5252    if ( ! $timezone_string ) {
    52415253        return false;
    52425254    }
     
    56035615     * @param array $extra_context_headers Empty array by default.
    56045616     */
    5605     if ( $context && $extra_headers = apply_filters( "extra_{$context}_headers", array() ) ) {
     5617    $extra_headers = $context ? apply_filters( "extra_{$context}_headers", array() ) : array();
     5618    if ( $extra_headers ) {
    56065619        $extra_headers = array_combine( $extra_headers, $extra_headers ); // keys equal values
    56075620        $all_headers   = array_merge( $extra_headers, (array) $default_headers );
     
    57275740 */
    57285741function _wp_mysql_week( $column ) {
    5729     switch ( $start_of_week = (int) get_option( 'start_of_week' ) ) {
     5742    $start_of_week = (int) get_option( 'start_of_week' );
     5743    switch ( $start_of_week ) {
    57305744        case 1:
    57315745            return "WEEK( $column, 1 )";
     
    57585772    $override = is_null( $start_parent ) ? array() : array( $start => $start_parent );
    57595773
    5760     if ( ! $arbitrary_loop_member = wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override, $callback_args ) ) {
     5774    $arbitrary_loop_member = wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override, $callback_args );
     5775    if ( ! $arbitrary_loop_member ) {
    57615776        return array();
    57625777    }
     
    57865801 */
    57875802function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = array(), $callback_args = array(), $_return_loop = false ) {
    5788     $tortoise = $hare = $evanescent_hare = $start;
    5789     $return   = array();
     5803    $tortoise        = $start;
     5804    $hare            = $start;
     5805    $evanescent_hare = $start;
     5806    $return          = array();
    57905807
    57915808    // Set evanescent_hare to one past hare
     
    57995816    ) {
    58005817        if ( $_return_loop ) {
    5801             $return[ $tortoise ] = $return[ $evanescent_hare ] = $return[ $hare ] = true;
     5818            $return[ $tortoise ]        = true;
     5819            $return[ $evanescent_hare ] = true;
     5820            $return[ $hare ]            = true;
    58025821        }
    58035822
     
    71347153    }
    71357154
    7136     if ( $handle = opendir( $directory ) ) {
     7155    $handle = opendir( $directory );
     7156    if ( $handle ) {
    71377157        while ( ( $file = readdir( $handle ) ) !== false ) {
    71387158            $path = $directory . '/' . $file;
Note: See TracChangeset for help on using the changeset viewer.