Changeset 6025 for trunk/wp-includes/update.php
- Timestamp:
- 09/03/2007 11:19:20 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/update.php
r5900 r6025 9 9 global $wp_version; 10 10 $php_version = phpversion(); 11 11 12 12 $current = get_option( 'update_core' ); 13 13 $locale = get_locale(); … … 36 36 $response .= fgets( $fs, 1160 ); // One TCP-IP packet 37 37 fclose( $fs ); 38 38 39 39 $response = explode("\r\n\r\n", $response, 2); 40 40 $body = trim( $response[1] ); 41 41 $body = str_replace(array("\r\n", "\r"), "\n", $body); 42 42 43 43 $returns = explode("\n", $body); 44 44
Note: See TracChangeset
for help on using the changeset viewer.