Open vdespa opened 11 years ago
When a menu item with tags is defined and accessed the following PHP warning appears:
Notice: Undefined property: stdClass::$id in \plugins\content\artofcomments\artofcomments.php on line 149
Id in this case is NULL.
If fixed this with something like:
if (property_exists($article, "id")) $enabledKey = $context . '-' . (int) $article->id; else $enabledKey = -1;
Let me know if I should submit a PR.
When a menu item with tags is defined and accessed the following PHP warning appears:
Notice: Undefined property: stdClass::$id in \plugins\content\artofcomments\artofcomments.php on line 149
Id in this case is NULL.