checkout/payment.php
- Add names to nonces in template files. Reference: 9d10d107e20e20b20719236bfbfd123f15667a3d
This commit is contained in:
parent
8192e8cb7a
commit
3973182b88
|
@ -11,14 +11,11 @@
|
||||||
* the readme will list any important changes.
|
* the readme will list any important changes.
|
||||||
*
|
*
|
||||||
* @see https://docs.woocommerce.com/document/template-structure/
|
* @see https://docs.woocommerce.com/document/template-structure/
|
||||||
* @author WooThemes
|
|
||||||
* @package WooCommerce/Templates
|
* @package WooCommerce/Templates
|
||||||
* @version 3.3.0
|
* @version 3.4.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ( ! defined( 'ABSPATH' ) ) {
|
defined( 'ABSPATH' ) || exit;
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( ! is_ajax() ) {
|
if ( ! is_ajax() ) {
|
||||||
do_action( 'woocommerce_review_order_before_payment' );
|
do_action( 'woocommerce_review_order_before_payment' );
|
||||||
|
@ -52,7 +49,7 @@ if ( ! is_ajax() ) {
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_review_order_after_submit' ); ?>
|
<?php do_action( 'woocommerce_review_order_after_submit' ); ?>
|
||||||
|
|
||||||
<?php wp_nonce_field( 'woocommerce-process_checkout' ); ?>
|
<?php wp_nonce_field( 'woocommerce-process_checkout', 'woocommerce-process-checkout-nonce' ); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
|
|
Reference in New Issue