Hanno modificato il plugin content.php dalle versione precedente ...
Hanno aggiunto in coda al file il seguente codice
if(count($rows))
{
foreach($rows as $row)
{
$new_row = array();
foreach($row AS $key => $article) {
if(searchHelper::checkNoHTML($article, $searchText, array('text', 'title', 'metadesc', 'metakey'))) {
$new_row[] = $article;
}
}
$results = array_merge($results, (array) $new_row);
}
}
al posto di
if(count($rows))
{
foreach($rows as $row)
{
$results = array_merge($results, (array) $row);
}
}
sapete mica a che serve sto checkNoHTML?!?
Grazie e ciao a tutti