Code Duplication    Length = 7-7 lines in 2 locations

modules/custom-css/custom-css.php 2 locations

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