Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save antoinekociuba/fefd76b72f3ab44503fdcf83ef2dafad to your computer and use it in GitHub Desktop.
Save antoinekociuba/fefd76b72f3ab44503fdcf83ef2dafad to your computer and use it in GitHub Desktop.
Magento SUPEE-9767 Checkout Form Key Theme Patch
find -L app/design/frontend -name 'shipping.phtml' -or -name 'billing.phtml' -or -name 'shipping_method.phtml' -or -name 'payment.phtml' -or -name 'addresses.phtml' \
| xargs grep -L formkey \
| xargs perl -i -pe 's/<\/form>/<?php echo \$this->getBlockHtml("formkey") ?>\n<\/form>/g'
find -L skin/frontend -name 'opcheckout.js' \
| xargs grep -L form_key \
| xargs perl -i -pe 's/if \(elements\[i\]\.name=='\''payment\[method\]'\''\) \{/if (elements[i].name=='\''payment[method]'\'' || elements[i].name == '\''form_key'\'') {/g'
find -L js -name 'payment.js' \
| xargs grep -L form_key \
| xargs perl -i -pe 's/if \(elements\[i\]\.name=='\''payment\[method\]'\''\) \{/if (elements[i].name=='\''payment[method]'\'' || elements[i].name == '\''form_key'\'') {/g'
@grafikchaos
Copy link

grafikchaos commented Jun 19, 2017

Thanks @antoinekociuba! I've updated my gist as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment