소스 검색

skip signature related parameters.

master
Patrick Peng Sun 8 년 전
부모
커밋
cf15ff25bd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      crmpixel.go

+ 1
- 1
crmpixel.go 파일 보기

@@ -240,7 +240,7 @@ func setTrackingCookieAndRecirect(w http.ResponseWriter, r *http.Request) {

//set all cookie from url
for k, v := range m {
if k == "lid" || k == "url" || k == "expire" { //skip lead id and URL and expire
if k == "lid" || k == "url" || k == "expire" || k == "nonce" || k == "signature" || k == "timestamp" { //skip lead id and URL and expire
continue
}
log.Printf("set cookie %s=%s", k, v)

Loading…
취소
저장