Make WordPress Core

Changeset 18226


Ignore:
Timestamp:
06/10/2011 05:50:23 AM (14 years ago)
Author:
nacin
Message:

Bump.

Location:
trunk/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/update.php

    r18225 r18226  
    8585        foreach ( $offer as $offer_key => $value ) {
    8686            if ( 'packages' == $offer_key )
    87                 $offer['packages'] = (object) array_intersect_key( array_map( 'esc_url', $offer['packages'] ), array_fill_keys( array( 'full', 'no_content', 'new_bundled', 'partial' ), '' ) );
     87                $offer['packages'] = (object) array_intersect_key( array_map( 'esc_url', $offer['packages'] ),
     88                    array_fill_keys( array( 'full', 'no_content', 'new_bundled', 'partial' ), '' ) );
    8889            elseif ( 'download' == $offer_key )
    8990                $offer['download'] = esc_url( $value );
     
    9192                $offer[ $offer_key ] = esc_html( $value );
    9293        }
    93         $offer = (object) array_intersect_key( $offer, array_fill_keys( array( 'response', 'download', 'locale', 'packages', 'current', 'php_version', 'mysql_version', 'new_bundled' ), '' ) );
     94        $offer = (object) array_intersect_key( $offer, array_fill_keys( array( 'response', 'download',
     95            'locale', 'packages', 'current', 'php_version', 'mysql_version', 'new_bundled' ), '' ) );
    9496    }
    9597
  • trunk/wp-includes/version.php

    r18225 r18226  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '3.2-beta2-18209';
     7$wp_version = '3.2-beta2-18226';
    88
    99/**
     
    1212 * @global int $wp_db_version
    1313 */
    14 $wp_db_version = 18220;
     14$wp_db_version = 18226;
    1515
    1616/**
Note: See TracChangeset for help on using the changeset viewer.