Warnings about undefined indeces
-
The file rss-post-importer/app/classes/front/class-rss-pi-front.php throws warnings about undefined indeces in lines 50, 53 and 56.
Example line 50:
if($this->options['settings']['og_show']==1)That way the warning disappears:
if(isset($this->options['settings']['og_show']) and $this->options['settings']['og_show']==1)Please develop with
define( 'WP_DEBUG', true );in the wp-config.php to get those notices.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Warnings about undefined indeces’ is closed to new replies.