Code Duplication    Length = 5-7 lines in 2 locations

includes/class-wcs-shortcodes.php 2 locations

@@ 879-883 (lines=5) @@
876
877
		if ( $first_renewal_timestamp > 0 ) {
878
			if ( $atts['show_time'] ) {
879
				if ( 'timestamp' == $atts['format'] ) {
880
					$date_format = 'Y-m-d H:i:s';
881
				} else if ( 'string' == $atts['format'] ) {
882
					$date_format = 'D jS F Y H:i A';
883
				}
884
			} else {
885
				if ( 'timestamp' == $atts['format'] ) {
886
					$date_format = 'Y-m-d';
@@ 884-890 (lines=7) @@
881
				} else if ( 'string' == $atts['format'] ) {
882
					$date_format = 'D jS F Y H:i A';
883
				}
884
			} else {
885
				if ( 'timestamp' == $atts['format'] ) {
886
					$date_format = 'Y-m-d';
887
				} else if ( 'string' == $atts['format'] ) {
888
					$date_format = 'D jS F Y';
889
				}
890
			}
891
892
			$date_format = apply_filters( 'wcss_first_payment_date_format', $date_format, $atts );
893