Open admin/applications/forums/extensions/searchPlugin.php and find:
Find:
Find:
'limit' => array(0, $this->hardLimit),Change to:
//'limit' => array(0, $this->hardLimit),It will appear twice... make it in all!
Find:
'limit' => array(0, $this->hardLimit + 1),Change:
//'limit' => array(0, $this->hardLimit + 1),It will appear twice... make it in all!
Find:
if ( $count > $this->hardLimit )
{
$count = $this->hardLimit;
$this->resultsCutToLimit = true;
}
Change to: /*if ( $count > $this->hardLimit )
{
$count = $this->hardLimit;
$this->resultsCutToLimit = true;
}*/













