Difference between revisions of "Error notice using search"

From Joomla! Documentation

Line 7: Line 7:
 
=== Fix ===
 
=== Fix ===
 
<pre>
 
<pre>
 
 
 
Go to  plugins/search/content/content.php  
 
Go to  plugins/search/content/content.php  
  
Line 17: Line 15:
  
 
$itemid = isset($item->id) ? '&Itemid='.$item->id : '';
 
$itemid = isset($item->id) ? '&Itemid='.$item->id : '';
 +
 +
 
Save
 
Save
  

Revision as of 15:52, 8 March 2012

Issue[edit]

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[edit]

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[edit]