Code style cleanups

git-svn-id: http://svn.automattic.com/wordpress/trunk@12899 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-01-29 18:53:32 +00:00
parent 7cf294e0e1
commit 4e9de8d231
1 changed files with 11 additions and 12 deletions

View File

@ -62,7 +62,7 @@ function wp_version_check() {
$body = trim( $response['body'] ); $body = trim( $response['body'] );
$body = str_replace(array("\r\n", "\r"), "\n", $body); $body = str_replace(array("\r\n", "\r"), "\n", $body);
$new_options = array(); $new_options = array();
foreach( explode( "\n\n", $body ) as $entry) { foreach ( explode( "\n\n", $body ) as $entry ) {
$returns = explode("\n", $entry); $returns = explode("\n", $entry);
$new_option = new stdClass(); $new_option = new stdClass();
$new_option->response = esc_attr( $returns[0] ); $new_option->response = esc_attr( $returns[0] );
@ -160,7 +160,7 @@ function wp_update_plugins() {
if ( is_wp_error( $raw_response ) ) if ( is_wp_error( $raw_response ) )
return false; return false;
if( 200 != $raw_response['response']['code'] ) if ( 200 != $raw_response['response']['code'] )
return false; return false;
$response = unserialize( $raw_response['body'] ); $response = unserialize( $raw_response['body'] );
@ -189,10 +189,10 @@ function wp_update_plugins() {
function wp_update_themes( ) { function wp_update_themes( ) {
global $wp_version; global $wp_version;
if( defined( 'WP_INSTALLING' ) ) if ( defined( 'WP_INSTALLING' ) )
return false; return false;
if( !function_exists( 'get_themes' ) ) if ( !function_exists( 'get_themes' ) )
require_once( ABSPATH . 'wp-includes/theme.php' ); require_once( ABSPATH . 'wp-includes/theme.php' );
$installed_themes = get_themes( ); $installed_themes = get_themes( );
@ -208,13 +208,12 @@ function wp_update_themes( ) {
$themes = array(); $themes = array();
$checked = array(); $checked = array();
$themes['current_theme'] = (array) $current_theme; $themes['current_theme'] = (array) $current_theme;
foreach( (array) $installed_themes as $theme_title => $theme ) { foreach ( (array) $installed_themes as $theme_title => $theme ) {
$themes[$theme['Stylesheet']] = array(); $themes[$theme['Stylesheet']] = array();
$checked[$theme['Stylesheet']] = $theme['Version']; $checked[$theme['Stylesheet']] = $theme['Version'];
foreach( (array) $theme as $key => $value ) { foreach ( (array) $theme as $key => $value )
$themes[$theme['Stylesheet']][$key] = $value; $themes[$theme['Stylesheet']][$key] = $value;
}
} }
$theme_changed = false; $theme_changed = false;
@ -234,7 +233,7 @@ function wp_update_themes( ) {
} }
} }
if( $time_not_changed && !$theme_changed ) if ( $time_not_changed && !$theme_changed )
return false; return false;
// Update last_checked for current to prevent multiple blocking requests if request hangs // Update last_checked for current to prevent multiple blocking requests if request hangs
@ -251,14 +250,14 @@ function wp_update_themes( ) {
$raw_response = wp_remote_post( 'http://api.wordpress.org/themes/update-check/1.0/', $options ); $raw_response = wp_remote_post( 'http://api.wordpress.org/themes/update-check/1.0/', $options );
if( is_wp_error( $raw_response ) ) if ( is_wp_error( $raw_response ) )
return false; return false;
if( 200 != $raw_response['response']['code'] ) if ( 200 != $raw_response['response']['code'] )
return false; return false;
$response = unserialize( $raw_response['body'] ); $response = unserialize( $raw_response['body'] );
if( $response ) { if ( $response ) {
$new_option->checked = $checked; $new_option->checked = $checked;
$new_option->response = $response; $new_option->response = $response;
} }
@ -307,7 +306,7 @@ function _maybe_update_plugins() {
*/ */
function _maybe_update_themes( ) { function _maybe_update_themes( ) {
$current = get_site_transient( 'update_themes' ); $current = get_site_transient( 'update_themes' );
if( isset( $current->last_checked ) && 43200 > ( time( ) - $current->last_checked ) ) if ( isset( $current->last_checked ) && 43200 > ( time( ) - $current->last_checked ) )
return; return;
wp_update_themes(); wp_update_themes();