Index: capabilities.php
===================================================================
--- capabilities.php	(revision 15354)
+++ capabilities.php	(working copy)
@@ -1079,7 +1079,7 @@
 function current_user_can_for_blog( $blog_id, $capability ) {
 	$current_user = wp_get_current_user();
 
-    if ( is_multisite() && is_super_admin() )
+	if ( is_multisite() && is_super_admin() )
 		return true;
 
 	if ( empty( $current_user ) )
Index: category-template.php
===================================================================
--- category-template.php	(revision 15354)
+++ category-template.php	(working copy)
@@ -731,9 +731,9 @@
 		break;
 	endswitch;
 
-    if ( $filter )
+	if ( $filter )
 		return apply_filters( 'wp_generate_tag_cloud', $return, $tags, $args );
-    else
+	else
 		return $return;
 }
 
Index: cron.php
===================================================================
--- cron.php	(revision 15354)
+++ cron.php	(working copy)
@@ -90,10 +90,10 @@
 
 	$now = time();
 
-    if ( $timestamp >= $now )
-        $timestamp = $now + $interval;
-    else
-        $timestamp = $now + ($interval - (($now - $timestamp) % $interval));
+	if ( $timestamp >= $now )
+		$timestamp = $now + $interval;
+	else
+		$timestamp = $now + ($interval - (($now - $timestamp) % $interval));
 
 	wp_schedule_event( $timestamp, $recurrence, $hook, $args );
 }
Index: functions.php
===================================================================
--- functions.php	(revision 15354)
+++ functions.php	(working copy)
@@ -669,7 +669,7 @@
 function delete_transient( $transient ) {
 	global $_wp_using_ext_object_cache;
 
-    do_action( 'delete_transient_' . $transient, $transient );
+	do_action( 'delete_transient_' . $transient, $transient );
 
 	if ( $_wp_using_ext_object_cache ) {
 		$result = wp_cache_delete( $transient, 'transient' );
@@ -757,7 +757,7 @@
 function set_transient( $transient, $value, $expiration = 0 ) {
 	global $_wp_using_ext_object_cache;
 
-    $value = apply_filters( 'pre_set_transient_' . $transient, $value );
+	$value = apply_filters( 'pre_set_transient_' . $transient, $value );
 
 	if ( $_wp_using_ext_object_cache ) {
 		$result = wp_cache_set( $transient, $value, 'transient', $expiration );
@@ -3784,7 +3784,7 @@
 function set_site_transient( $transient, $value, $expiration = 0 ) {
 	global $_wp_using_ext_object_cache;
 
-    $value = apply_filters( 'pre_set_site_transient_' . $transient, $value );
+	$value = apply_filters( 'pre_set_site_transient_' . $transient, $value );
 
 	if ( $_wp_using_ext_object_cache ) {
 		$result = wp_cache_set( $transient, $value, 'site-transient', $expiration );
Index: link-template.php
===================================================================
--- link-template.php	(revision 15354)
+++ link-template.php	(working copy)
@@ -2228,7 +2228,7 @@
  * @uses wp_get_shortlink()
  */
 function wp_shortlink_header() {
-    if ( headers_sent() )
+	if ( headers_sent() )
 		return;
 
 	$shortlink = wp_get_shortlink(0, 'query');
Index: taxonomy.php
===================================================================
--- taxonomy.php	(revision 15354)
+++ taxonomy.php	(working copy)
@@ -996,7 +996,7 @@
 			$order = '';
  			$selects = array('COUNT(*)');
  	}
-    $select_this = implode(', ', apply_filters( 'get_terms_fields', $selects, $args ));
+	$select_this = implode(', ', apply_filters( 'get_terms_fields', $selects, $args ));
 
 	$query = "SELECT $select_this FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ($in_taxonomies) $where $orderby $order $limit";
 
