Code Duplication    Length = 1-1 lines in 2 locations

includes/class-sensei-settings-api.php 2 locations

@@ 654-654 (lines=1) @@
651
652
		foreach ( $this->fields as $k => $v ) {
653
			// Make sure checkboxes are present even when false.
654
			if ( $v['type'] == 'checkbox' && ! isset( $input[$k] ) ) { $input[$k] = false; }
655
			if ( $v['type'] == 'multicheck' && ! isset( $input[$k] ) ) { $input[$k] = false; }
656
657
			if ( isset( $input[$k] ) ) {
@@ 655-655 (lines=1) @@
652
		foreach ( $this->fields as $k => $v ) {
653
			// Make sure checkboxes are present even when false.
654
			if ( $v['type'] == 'checkbox' && ! isset( $input[$k] ) ) { $input[$k] = false; }
655
			if ( $v['type'] == 'multicheck' && ! isset( $input[$k] ) ) { $input[$k] = false; }
656
657
			if ( isset( $input[$k] ) ) {
658
				// Perform checks on required fields.