A PHP Notice (a warning message) may show up using various plugins with Atahualpa, if you have
HTML Code:
define('WP_DEBUG', true);
HTML Code:
[09-Feb-2015 10:50:41 UTC] PHP Notice: Undefined index: bfa_ata_noncename in /...some list of folders.../wp-content/themes/atahualpa/functions.php on line 652
To fix this issue edit 'function.php' and change line 652 from
HTML Code:
if ( !wp_verify_nonce( $_POST['bfa_ata_noncename'], plugin_basename(__FILE__) )) {
HTML Code:
if (isset($_POST['bfa_ata_noncename'])) { if ( !wp_verify_nonce( $_POST['bfa_ata_noncename'], plugin_basename(__FILE__) )) {
HTML Code:
if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
HTML Code:
} if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9