Code Duplication    Length = 7-7 lines in 2 locations

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

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