Viewing 1 replies (of 1 total)
  • I also get this notice when I favorite a post. I get the same notice about the index ‘autoshow’ on any page with favorites showing. I believe the line on 469 needs to check if the key exists before calling it. I changed line 469 from:

    return htmlspecialchars_decode( stripslashes ( $wpfp_options[$opt] ) );

    to:

    if (array_key_exists($opt, $wpfp_options)) {
     return htmlspecialchars_decode( stripslashes ( $wpfp_options[$opt] ) );
    }

    and this seems to eliminate this error. Perhaps the plugin developer can check to see if this is a good solution and if so, add it to the next release?

    Thanks for the great plugin!

Viewing 1 replies (of 1 total)
  • The topic ‘PHP Notice’ is closed to new replies.