Use wp_nonce_field. $woocommerce->nonce_field is deprecated.

This commit is contained in:
Scott Basgaard 2013-10-26 16:39:10 +02:00
parent 213525fc7c
commit 507b7bec96
1 changed files with 1 additions and 1 deletions

View File

@ -40,6 +40,6 @@ global $woocommerce;
<p><input type="submit" class="button" name="save_account_details" value="<?php _e( 'Save changes', 'woocommerce' ); ?>" /></p>
<?php $woocommerce->nonce_field('save_account_details')?>
<?php wp_nonce_field('save_account_details')?>
<input type="hidden" name="action" value="save_account_details" />
</form>