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/class-wp-customize-widgets.php

    r45429 r45590  
    14391439                $value[ $parsed_id['number'] ] = $instance;
    14401440                $key                           = 'widget-' . $parsed_id['id_base'];
    1441                 $_REQUEST[ $key ]              = $_POST[ $key ] = wp_slash( $value );
     1441                $_REQUEST[ $key ]              = wp_slash( $value );
     1442                $_POST[ $key ]                 = $_REQUEST[ $key ];
    14421443                $added_input_vars[]            = $key;
    14431444            } else {
    14441445                foreach ( $instance as $key => $value ) {
    1445                     $_REQUEST[ $key ]   = $_POST[ $key ] = wp_slash( $value );
     1446                    $_REQUEST[ $key ]   = wp_slash( $value );
     1447                    $_POST[ $key ]      = $_REQUEST[ $key ];
    14461448                    $added_input_vars[] = $key;
    14471449                }
     
    18571859        // Render the widget.
    18581860        ob_start();
    1859         dynamic_sidebar( $this->rendering_sidebar_id = $context['sidebar_id'] );
    1860         $container                                   = ob_get_clean();
     1861        $this->rendering_sidebar_id = $context['sidebar_id'];
     1862        dynamic_sidebar( $this->rendering_sidebar_id );
     1863        $container = ob_get_clean();
    18611864
    18621865        // Reset variables for next partial render.
Note: See TracChangeset for help on using the changeset viewer.