Make WordPress Core

Ticket #18975: 18975.3.patch

File 18975.3.patch, 2.3 KB (added by SergeyBiryukov, 13 years ago)
  • wp-admin/admin-ajax.php

     
    860860                        'supplemental' => array('postid' => $pid)
    861861                ) );
    862862        } else { // Update?
    863                 $mid = (int) array_pop( $var_by_ref = array_keys($_POST['meta']) );
     863                $var_by_ref = array_keys( $_POST['meta'] );
     864                $mid = (int) array_pop( $var_by_ref );
    864865                $key = stripslashes( $_POST['meta'][$mid]['key'] );
    865866                $value = stripslashes( $_POST['meta'][$mid]['value'] );
    866867                if ( '' == trim($key) )
  • wp-admin/includes/nav-menu.php

     
    337337                        while ( have_posts() ) {
    338338                                the_post();
    339339                                if ( 'markup' == $response_format ) {
    340                                         echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( get_post( $var_by_ref = get_the_ID() ) ) ), 0, (object) $args );
     340                                        $var_by_ref = get_the_ID();
     341                                        echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( get_post( $var_by_ref ) ) ), 0, (object) $args );
    341342                                } elseif ( 'json' == $response_format ) {
    342343                                        echo json_encode(
    343344                                                array(
  • wp-app.php

     
    223223         */
    224224        function __construct() {
    225225
    226                 $this->script_name = array_pop( $var_by_ref = explode( '/', $_SERVER['SCRIPT_NAME'] ) );
     226                $var_by_ref = explode( '/', $_SERVER['SCRIPT_NAME'] );
     227                $this->script_name = array_pop( $var_by_ref );
    227228                $this->app_base = site_url( $this->script_name . '/' );
    228229
    229230                $this->selectors = array(
  • wp-includes/wp-db.php

     
    13861386                        // Return an array of row objects with keys from column 1
    13871387                        // (Duplicates are discarded)
    13881388                        foreach ( $this->last_result as $row ) {
    1389                                 $key = array_shift( $var_by_ref = get_object_vars( $row ) );
     1389                                $var_by_ref = get_object_vars( $row );
     1390                                $key = array_shift( $var_by_ref );
    13901391                                if ( ! isset( $new_array[ $key ] ) )
    13911392                                        $new_array[ $key ] = $row;
    13921393                        }