PDA

View Full Version : Changing Advanced Search Tag Cache


TWood
05-11-2011, 11:09 AM
Over at this thread Lynne showed me how to change the tag cache when searching from the tag search page:

https://vborg.vbsupport.ru/showthread.php?t=263219

The code is in tags.php around line 149. Just try a plugin using tags_start:
$vbulletin->GPC_exists['nocache'] = true;
$vbulletin->GPC['nocache'] = true;

That's for modifying tags.php with a plug-in where line 149 in tags.php looks like this:

if (!($vbulletin->GPC_exists['nocache'] AND $vbulletin->GPC['nocache']))
{
$results = vB_Search_Results::create_from_cache($current_user , $criteria);
}




But the Advanced Search page uses search.php and at around line 600 there is this:

if (!($vbulletin->debug AND $vbulletin->GPC_exists['nocache'] AND $vbulletin->GPC['nocache']))
{
$results = vB_Search_Results::create_from_cache($current_user , $criteria);
}

if (!$results)
{
$results = vB_Search_Results::create_from_criteria($current_u ser, $criteria);

It has that extra debug condition. How would I modify Lynne's plug-in to create a new plug-in that will work for the Advanced Search page?

Thanks