----------------------
PHP Notice: Undefined index: bfa_ata_noncename
wp-content/themes/atahualpa/functions.php on line 661
I'm using the latest Atahualpa (3.7.10) with the latest version of wordpress on shared hosting.
Here's what's on line 661:
Code:
if ( !wp_verify_nonce( $_POST['bfa_ata_noncename'], plugin_basename(__FILE__) )) { return $post_id;
A random, one time use token (the 'nonce' - nothing to do with the pejorative meaning of the word in British English, it's short for 'number used once') is set in the form displayed on a custom box on the page.
The routine doing this is in function bfa_ata_inner_custom_box() on line 589:
Code:
echo '<input type="hidden" name="bfa_ata_noncename" id="bfa_ata_noncename" value="' . wp_create_nonce( plugin_basename(__FILE__) ) . '" />';
The token is verified when the form is processed by bfa_ata_save_postdata - if they're the same, the form is genuine.
The bfa_ata_save_postdata function wants to save the post in the database, but $_POST['bfa_ata_noncename'] does not exist, hence the error - don't know why, it should be OK.
I'm suffering an error on my wp install, so this could be specific to me but I thought I'd post here as I can't find much elsewhere and it might help someone.
I wrapped the line with a check, that fixed it but it won't survive the next upgrade:
Code:
if (isset($_POST['bfa_ata_noncename'])) {//fix130212a if ( !wp_verify_nonce( $_POST['bfa_ata_noncename'], plugin_basename(__FILE__) )) { return $post_id; } }