Code Duplication    Length = 7-7 lines in 2 locations

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

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