
02-26-2004, 06:13 PM
|
|
|
Join Date: Mar 2002
Location: England
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by KirbyDE
OK, so it still uses the cached results.
Maybe this does work (remove the other mods):
In search.php FIND
PHP Code:
// check our results and decide what to do switch ($highScore)
ABOVE that ADD
PHP Code:
if ($highScore > 0 AND $_REQUEST['dontcache']) { $highScore = 0; $DB_site->query("DELETE FROM " . TABLE_PREFIX . "search WHERE searchid=$search[searchid]"); }
|
Works perfect.
|