Error notice using search
From Joomla! Documentation
Issue
When making a search within the search module, the next notice appears:
Notice: Trying to get property of non-object in /path/to/joomla/plugins/search/content/content.php on line 234
Fix
Go to plugins/search/content/content.php Search $itemid = isset($item) ? '&Itemid='.$item->id : ''; Replace with the following line: $itemid = isset($item->id) ? '&Itemid='.$item->id : ''; Save
See also
- issue in the tracker (bug tracker #27853)