• Parameters for testing

    https://localhost/services/esg-consulting/materiality/?utm_campaign=compain&utm_source=https%3A%2F%2Fwww.example.com%2Fabout%2Fcontact%2F%3Fparam1%3Dtest%26param2%3Dindex.html

    View post on imgur.com

    It is impossible to get the whole address from the utm parameter, because this line is to blame. Maybe you wanted to write like this? Otherwise, it makes no sense to remove characters before decoding, without which decoding is impossible.

    in handl-utm-grabber/js/handl-utm-grabber.js line 14

    curval = decodeURIComponent(curval.replace(/[%]/g,' '))
    curval = decodeURIComponent(curval).replace(/[%]/g, ' ');

    View post on imgur.com

Viewing 1 replies (of 1 total)
  • Plugin Author Haktan Suren

    (@haktansuren)

    It seems like you might be correct. I need to review the code base to understand why it was written in that manner before making any changes. Thank you for your feedback.

Viewing 1 replies (of 1 total)
  • The topic ‘Broken parameters’ is closed to new replies.