Changeset 18226
- Timestamp:
- 06/10/2011 05:50:23 AM (14 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/update.php
r18225 r18226 85 85 foreach ( $offer as $offer_key => $value ) { 86 86 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' ), '' ) ); 88 89 elseif ( 'download' == $offer_key ) 89 90 $offer['download'] = esc_url( $value ); … … 91 92 $offer[ $offer_key ] = esc_html( $value ); 92 93 } 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' ), '' ) ); 94 96 } 95 97 -
trunk/wp-includes/version.php
r18225 r18226 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '3.2-beta2-182 09';7 $wp_version = '3.2-beta2-18226'; 8 8 9 9 /** … … 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 1822 0;14 $wp_db_version = 18226; 15 15 16 16 /**
Note: See TracChangeset
for help on using the changeset viewer.