Jump to content

Wordpress Issue


Xtremer360

Recommended Posts

I have WP-Polls Plugin activated and I have it showing the poll correctly but above it. It says "Notice: Undefined index: pollresult in /home/content/y/a/n/yankeefaninkc/html/wordpress/wp-content/plugins/wp-polls/wp-polls.php  on line 76

 

Notice: Undefined index: pollresult in /home/content/y/a/n/yankeefaninkc/html/wordpress/wp-content/plugins/wp-polls/wp-polls.php on line 514.

 

Not sure why I haven't messed with any files of that plugin.

Link to comment
https://forums.phpfreaks.com/topic/198062-wordpress-issue/
Share on other sites

An undefined index is a fairly minor error, More as a warning. Whatever is on line 76 does not check if the index exists first, so it's a problem in their code. If error reporting were not set to E_ALL, It would most likely not even display this (As it's not a fatal error of any sort).

 

If you wish to prevent the warning, You can go to before line 76 and place

$whatever['pollresult'] = null;

 

And then it will exist.

 

Link to comment
https://forums.phpfreaks.com/topic/198062-wordpress-issue/#findComment-1039234
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.