Make the operator precedence obvious by using parenthesis.
git-svn-id: http://svn.automattic.com/wordpress/trunk@11829 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
613aeb5316
commit
e27b8078dd
|
@ -47,7 +47,7 @@ function wp_version_check() {
|
||||||
$url = "http://api.wordpress.org/core/version-check/1.3/?version=$wp_version&php=$php_version&locale=$locale&mysql=$mysql_version&local_package=$local_package";
|
$url = "http://api.wordpress.org/core/version-check/1.3/?version=$wp_version&php=$php_version&locale=$locale&mysql=$mysql_version&local_package=$local_package";
|
||||||
|
|
||||||
$options = array(
|
$options = array(
|
||||||
'timeout' => defined('DOING_CRON') && DOING_CRON ? 30 : 3,
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
|
||||||
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ function wp_update_plugins() {
|
||||||
$to_send = (object)compact('plugins', 'active');
|
$to_send = (object)compact('plugins', 'active');
|
||||||
|
|
||||||
$options = array(
|
$options = array(
|
||||||
'timeout' => defined('DOING_CRON') && DOING_CRON ? 30 : 3,
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
|
||||||
'body' => array( 'plugins' => serialize( $to_send ) ),
|
'body' => array( 'plugins' => serialize( $to_send ) ),
|
||||||
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
||||||
);
|
);
|
||||||
|
@ -240,7 +240,7 @@ function wp_update_themes( ) {
|
||||||
$current_theme->template = get_option( 'template' );
|
$current_theme->template = get_option( 'template' );
|
||||||
|
|
||||||
$options = array(
|
$options = array(
|
||||||
'timeout' => defined('DOING_CRON') && DOING_CRON ? 30 : 3,
|
'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
|
||||||
'body' => array( 'themes' => serialize( $themes ) ),
|
'body' => array( 'themes' => serialize( $themes ) ),
|
||||||
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue