|  | @@ 726-732 (lines=7) @@ | 
                                                            
                                    | 723 |  | 				if ( ! empty( $safecss_post['post_content'] ) ) { | 
                                                            
                                    | 724 |  | 					$css = $safecss_post['post_content']; | 
                                                            
                                    | 725 |  | 				} | 
                                                            
                                    | 726 |  | 			} else { | 
                                                            
                                    | 727 |  | 				$current_revision = Jetpack_Custom_CSS::get_current_revision(); | 
                                                            
                                    | 728 |  |  | 
                                                            
                                    | 729 |  | 				if ( ! empty( $current_revision['post_content'] ) ) { | 
                                                            
                                    | 730 |  | 					$css = $current_revision['post_content']; | 
                                                            
                                    | 731 |  | 				} | 
                                                            
                                    | 732 |  | 			} | 
                                                            
                                    | 733 |  |  | 
                                                            
                                    | 734 |  | 			// Fix for un-migrated Custom CSS | 
                                                            
                                    | 735 |  | 			if ( empty( $safecss_post ) ) { | 
                                                                                
                                |  | @@ 743-749 (lines=7) @@ | 
                                                            
                                    | 740 |  | 			} | 
                                                            
                                    | 741 |  | 		} | 
                                                            
                                    | 742 |  |  | 
                                                            
                                    | 743 |  | 		if ( 'safecss_preview' == $option ) { | 
                                                            
                                    | 744 |  | 			$safecss_post = Jetpack_Custom_CSS::get_current_revision(); | 
                                                            
                                    | 745 |  |  | 
                                                            
                                    | 746 |  | 			if ( !empty( $safecss_post['post_content'] ) ) { | 
                                                            
                                    | 747 |  | 				$css = $safecss_post['post_content']; | 
                                                            
                                    | 748 |  | 			} | 
                                                            
                                    | 749 |  | 		} | 
                                                            
                                    | 750 |  |  | 
                                                            
                                    | 751 |  | 		$css = str_replace( array( '\\\00BB \\\0020', '\0BB \020', '0BB 020' ), '\00BB \0020', $css ); | 
                                                            
                                    | 752 |  |  |