Alexander Menk
Alexander Menk
FYI @alazar-tekle
To narrow things down @iranimij, could you temporarily disable the newsletter in the footer and see if the problem persists?
Do you know where this font tag is generated?
In https://github.com/iMi-digital/magento2-friendly-captcha/pull/51 only the backend check is disabled for trusted IPs, not the frontend widget one. We usually just disable the captchas in our test events fully using n98-magerun2 config:store:set...
I also noticed problems with phpcbf running into infinite loops which seem to be related with CRLFs
@tcz Did you try fixing this?
Root cause seems in https://github.com/defunctzombie/form-serialize/ which this uses "a modified 0.7.1" https://github.com/keen/keen-tracking.js/blob/a3823d3cb34a5ecb7fb309d9c58a6dec738f0a88/lib/utils/serializeForm.js#L2 of So this seems to be that issue: https://github.com/defunctzombie/form-serialize/issues/52
We found out that deleting the else branch here fully, at least does not break the original form submit: https://github.com/keen/keen-tracking.js/blob/a3823d3cb34a5ecb7fb309d9c58a6dec738f0a88/lib/utils/listener.js#L256
@jrfnl thanks, updated
@jrfnl thanks for the elaborate tests. In the meanwhile I fixed all the violations in my codebase where this appeared. With minimal changes to have a violation, I no longer...