Error notice using search
From Joomla! Documentation
(Difference between revisions)
m (→See also: clean up categories with <noinclude> tags) |
m (heading reduction as for FAQ inclusion DPL test) |
||
| Line 1: | Line 1: | ||
| − | === Issue === | + | ===Issue=== |
When making a search within the search module, the next notice appears: | When making a search within the search module, the next notice appears: | ||
<pre> | <pre> | ||
| Line 5: | Line 5: | ||
</pre> | </pre> | ||
| − | === Fix === | + | ===Fix=== |
<pre> | <pre> | ||
Go to plugins/search/content/content.php | Go to plugins/search/content/content.php | ||
| Line 21: | Line 21: | ||
</pre> | </pre> | ||
| − | == See also == | + | ===See also=== |
* [http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=27853 issue in the tracker] (bug tracker #27853) | * [http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemEdit&tracker_item_id=27853 issue in the tracker] (bug tracker #27853) | ||
Latest revision as of 23:18, 1 September 2012
[edit] 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
[edit] 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
[edit] See also
- issue in the tracker (bug tracker #27853)