Warning about non-object
-
The file syndicatedlink.class.php throws a warning due to line 57 after upgrading.
Old line:
if (strlen($this->link->link_rss) > 0) :With that the warning disappears:
if (isset($this->link->link_rss) and strlen($this->link->link_rss) > 0):Please develop with
define('WP_DEBUG', true);in the wp-config.php to get those notices and to make your plugins more robust.
The topic ‘Warning about non-object’ is closed to new replies.