Changeset 17618 for trunk/wp-includes/update.php
- Timestamp:
- 04/07/2011 09:56:20 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/update.php
r17231 r17618 281 281 $new_update = new stdClass; 282 282 $new_update->last_checked = time( ); 283 $new_update->checked = $checked; 284 283 285 $response = unserialize( $raw_response['body'] ); 284 if ( $response ) { 285 $new_update->checked = $checked; 286 if ( false !== $response ) 286 287 $new_update->response = $response; 287 }288 288 289 289 set_site_transient( 'update_themes', $new_update );
Note: See TracChangeset
for help on using the changeset viewer.