Code Duplication    Length = 9-9 lines in 2 locations

class.jetpack.php 2 locations

@@ 932-940 (lines=9) @@
929
930
			wp_send_json_success();
931
		}
932
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) {
933
			$module_slug = $_REQUEST['jitmModule'];
934
935
			// User went to WordPress.com, track this
936
			$this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION );
937
			$this->do_stats( 'server_side' );
938
939
			wp_send_json_success();
940
		}
941
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
942
			$track = $_REQUEST['jitmModule'];
943
@@ 941-949 (lines=9) @@
938
939
			wp_send_json_success();
940
		}
941
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
942
			$track = $_REQUEST['jitmModule'];
943
944
			// User is viewing JITM, track it.
945
			$this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION );
946
			$this->do_stats( 'server_side' );
947
948
			wp_send_json_success();
949
		}
950
	}
951
952
	/**