Code Duplication    Length = 6-7 lines in 2 locations

includes/forms/template.php 2 locations

@@ 512-518 (lines=7) @@
509
			}
510
511
			//Custom Amount.
512
			if ( give_is_setting_enabled( $custom_amount ) && ! empty( $custom_amount_text ) ) {
513
				$output .= '<li>';
514
				$output .= '<button type="button" data-price-id="custom" class="give-donation-level-btn give-btn give-btn-level-custom" value="custom">';
515
				$output .= $custom_amount_text;
516
				$output .= '</button>';
517
				$output .= '</li>';
518
			}
519
520
			$output .= '</ul>';
521
@@ 540-545 (lines=6) @@
537
			}
538
539
			//Custom Amount.
540
			if ( give_is_setting_enabled( $custom_amount ) && ! empty( $custom_amount_text ) ) {
541
				$output .= '<li>';
542
				$output .= '<input type="radio" data-price-id="custom" class="give-radio-input give-radio-input-level give-radio-level-custom" name="give-radio-donation-level" id="give-radio-level-custom" value="custom">';
543
				$output .= '<label for="give-radio-level-custom">' . $custom_amount_text . '</label>';
544
				$output .= '</li>';
545
			}
546
547
			$output .= '</ul>';
548