Index: src/wp-activate.php
===================================================================
--- src/wp-activate.php	(revision 35482)
+++ src/wp-activate.php	(working copy)
@@ -117,9 +117,9 @@
 			</div>
 
 			<?php if ( $url && $url != network_home_url( '', 'http' ) ) :
-				switch_to_blog( (int) $result['blog_id'] ); 
-				$login_url = wp_login_url(); 
-				restore_current_blog(); 
+				switch_to_blog( (int) $result['blog_id'] );
+				$login_url = wp_login_url();
+				restore_current_blog();
 				?>
 				<p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) ); ?></p>
 			<?php else: ?>
Index: src/wp-admin/includes/class-ftp.php
===================================================================
--- src/wp-admin/includes/class-ftp.php	(revision 35482)
+++ src/wp-admin/includes/class-ftp.php	(working copy)
@@ -818,7 +818,7 @@
 	function glob_regexp($pattern,$probe) {
 		$sensitive=(PHP_OS!='WIN32');
 		return ($sensitive?
-			preg_match( '/' . preg_quote( $pattern, '/' ) . '/', $probe ) : 
+			preg_match( '/' . preg_quote( $pattern, '/' ) . '/', $probe ) :
 			preg_match( '/' . preg_quote( $pattern, '/' ) . '/i', $probe )
 		);
 	}
Index: src/wp-admin/includes/class-wp-filesystem-base.php
===================================================================
--- src/wp-admin/includes/class-wp-filesystem-base.php	(revision 35482)
+++ src/wp-admin/includes/class-wp-filesystem-base.php	(working copy)
@@ -559,7 +559,7 @@
 	 * @access public
 	 * @since 2.5.0
 	 * @abstract
-	 * 
+	 *
 	 * @param string $file Path to the file.
 	 * @return string|bool Username of the user or false on error.
 	 */
Index: src/wp-admin/includes/class-wp-filesystem-ssh2.php
===================================================================
--- src/wp-admin/includes/class-wp-filesystem-ssh2.php	(revision 35482)
+++ src/wp-admin/includes/class-wp-filesystem-ssh2.php	(working copy)
@@ -163,7 +163,7 @@
 
 	/**
 	 * @access public
-	 * 
+	 *
 	 * @param string $command
 	 * @param bool $returnbool
 	 * @return bool|string
Index: src/wp-admin/includes/class-wp-posts-list-table.php
===================================================================
--- src/wp-admin/includes/class-wp-posts-list-table.php	(revision 35482)
+++ src/wp-admin/includes/class-wp-posts-list-table.php	(working copy)
@@ -490,7 +490,7 @@
 		 * list table.
 		 *
 		 * @since 4.4.0
-		 * 
+		 *
 		 * @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
 		 */
 		do_action( 'manage_posts_extra_tablenav', $which );
Index: src/wp-admin/includes/class-wp-screen.php
===================================================================
--- src/wp-admin/includes/class-wp-screen.php	(revision 35482)
+++ src/wp-admin/includes/class-wp-screen.php	(working copy)
@@ -998,7 +998,7 @@
 		 * Filter whether to show the Screen Options submit button.
 		 *
 		 * @since 4.4.0
-		 * 
+		 *
 		 * @param bool      $show_button Whether to show Screen Options submit button.
 		 *                               Default false.
 		 * @param WP_Screen $this        Current WP_Screen instance.
Index: src/wp-admin/options-general.php
===================================================================
--- src/wp-admin/options-general.php	(revision 35482)
+++ src/wp-admin/options-general.php	(working copy)
@@ -83,7 +83,7 @@
 <tr>
 <th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th>
 <td><input name="home" type="url" id="home" aria-describedby="home-description" value="<?php form_option( 'home' ); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" />
-<?php if ( ! defined( 'WP_HOME' ) ) : ?> 
+<?php if ( ! defined( 'WP_HOME' ) ) : ?>
 <p class="description" id="home-description"><?php _e( 'Enter the address here if you <a href="https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">want your site home page to be different from your WordPress installation directory.</a>' ); ?></p></td>
 <?php endif; ?>
 </tr>
Index: src/wp-includes/class-json.php
===================================================================
--- src/wp-includes/class-json.php	(revision 35482)
+++ src/wp-includes/class-json.php	(working copy)
@@ -135,8 +135,8 @@
     *                                   bubble up with an error, so all return values
     *                                   from encode() should be checked with isError()
     *                           - SERVICES_JSON_USE_TO_JSON:  call toJSON when serializing objects
-    *                                   It serializes the return value from the toJSON call rather 
-    *                                   than the object itself, toJSON can return associative arrays, 
+    *                                   It serializes the return value from the toJSON call rather
+    *                                   than the object itself, toJSON can return associative arrays,
     *                                   strings or numbers, if you return an object, make sure it does
     *                                   not have a toJSON method, otherwise an error will occur.
     */
@@ -285,7 +285,7 @@
         
     }
     /**
-    * PRIVATE CODE that does the work of encodes an arbitrary variable into JSON format 
+    * PRIVATE CODE that does the work of encodes an arbitrary variable into JSON format
     *
     * @param    mixed   $var    any number, boolean, string, array, or object to be encoded.
     *                           see argument 1 to Services_JSON() above for array-parsing behavior.
@@ -295,7 +295,7 @@
     * @return   mixed   JSON string representation of input var or an error if a problem occurs
     * @access   public
     */
-    function _encode($var) 
+    function _encode($var)
     {
          
         switch (gettype($var)) {
@@ -505,7 +505,7 @@
                     }
                     
                     return $this->_encode( $recode );
-                } 
+                }
                 
                 $vars = get_object_vars($var);
                 
@@ -882,10 +882,10 @@
     
     /**
     * Calculates length of string in bytes
-    * @param string 
+    * @param string
     * @return integer length
     */
-    function strlen8( $str ) 
+    function strlen8( $str )
     {
         if ( $this->_mb_strlen ) {
             return mb_strlen( $str, "8bit" );
@@ -895,12 +895,12 @@
     
     /**
     * Returns part of a string, interpreting $start and $length as number of bytes.
-    * @param string 
-    * @param integer start 
-    * @param integer length 
+    * @param string
+    * @param integer start
+    * @param integer length
     * @return integer length
     */
-    function substr8( $string, $start, $length=false ) 
+    function substr8( $string, $start, $length=false )
     {
         if ( $length === false ) {
             $length = $this->strlen8( $string ) - $start;
Index: src/wp-includes/class-wp-walker.php
===================================================================
--- src/wp-includes/class-wp-walker.php	(revision 35482)
+++ src/wp-includes/class-wp-walker.php	(working copy)
@@ -386,7 +386,7 @@
 	 *
 	 * @since 2.7.0
 	 * @access public
-	 * 
+	 *
 	 * @param array $elements Elements to list.
 	 * @return int Number of root elements.
 	 */
Index: src/wp-includes/js/crop/cropper.css
===================================================================
--- src/wp-includes/js/crop/cropper.css	(revision 35482)
+++ src/wp-includes/js/crop/cropper.css	(working copy)
@@ -7,7 +7,7 @@
 
 /* an extra classname is applied for Opera < 9.0 to fix its lack of opacity support */
 .imgCrop_wrap.opera8 .imgCrop_overlay,
-.imgCrop_wrap.opera8 .imgCrop_clickArea { 
+.imgCrop_wrap.opera8 .imgCrop_clickArea {
 	background-color: transparent;
 }
 
@@ -28,7 +28,7 @@
 
 .imgCrop_selArea {
 	position: absolute;
-	/* @done_in_js 
+	/* @done_in_js
 	top: 20px;
 	left: 20px;
 	width: 200px;
@@ -96,7 +96,7 @@
 	cursor: n-resize;
 }
 
-.imgCrop_handleNE { 
+.imgCrop_handleNE {
 	top: -3px;
 	right: -3px;
 	cursor: ne-resize;
@@ -142,7 +142,7 @@
 }
 
 /**
- * Create an area to click & drag around on as the default browser behaviour is to let you drag the image 
+ * Create an area to click & drag around on as the default browser behaviour is to let you drag the image
  */
 .imgCrop_dragArea {
 	width: 100%;
@@ -162,4 +162,4 @@
 
 .imgCrop_previewWrap img {
 	position: absolute;
-}
\ No newline at end of file
+}
Index: src/wp-includes/theme-compat/sidebar.php
===================================================================
--- src/wp-includes/theme-compat/sidebar.php	(revision 35482)
+++ src/wp-includes/theme-compat/sidebar.php	(working copy)
@@ -71,7 +71,7 @@
 					printf( __( 'You have searched the %1$s blog archives for <strong>&#8216;%2$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links.' ),
 						sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
 						esc_html( get_search_query() )
-					); 
+					);
 				?></p>
 
 			<?php elseif ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) : /* If this set is paginated */ ?>
