|  | @@ 788-792 (lines=5) @@ | 
                                                            
                                    | 785 |  | 			); | 
                                                            
                                    | 786 |  |  | 
                                                            
                                    | 787 |  | 			$remember = false; | 
                                                            
                                    | 788 |  | 			if ( ! empty( $_COOKIE['jetpack_sso_remember_me'] ) ) { | 
                                                            
                                    | 789 |  | 				$remember = true; | 
                                                            
                                    | 790 |  | 				// And then purge it | 
                                                            
                                    | 791 |  | 				setcookie( 'jetpack_sso_remember_me', ' ', time() - YEAR_IN_SECONDS, COOKIEPATH, COOKIE_DOMAIN ); | 
                                                            
                                    | 792 |  | 			} | 
                                                            
                                    | 793 |  | 			/** | 
                                                            
                                    | 794 |  | 			 * Filter the remember me value. | 
                                                            
                                    | 795 |  | 			 * | 
                                                                                
                                |  | @@ 812-817 (lines=6) @@ | 
                                                            
                                    | 809 |  | 			$redirect_to = user_can( $user, 'edit_posts' ) ? admin_url() : self::profile_page_url(); | 
                                                            
                                    | 810 |  |  | 
                                                            
                                    | 811 |  | 			// If we have a saved redirect to request in a cookie | 
                                                            
                                    | 812 |  | 			if ( ! empty( $_COOKIE['jetpack_sso_redirect_to'] ) ) { | 
                                                            
                                    | 813 |  | 				// Set that as the requested redirect to | 
                                                            
                                    | 814 |  | 				$redirect_to = $_request_redirect_to = esc_url_raw( $_COOKIE['jetpack_sso_redirect_to'] ); | 
                                                            
                                    | 815 |  | 				// And then purge it | 
                                                            
                                    | 816 |  | 				setcookie( 'jetpack_sso_redirect_to', ' ', time() - YEAR_IN_SECONDS, COOKIEPATH, COOKIE_DOMAIN ); | 
                                                            
                                    | 817 |  | 			} | 
                                                            
                                    | 818 |  |  | 
                                                            
                                    | 819 |  | 			wp_safe_redirect( | 
                                                            
                                    | 820 |  | 				/** This filter is documented in core/src/wp-login.php */ |