View Single Post
  #18  
Old 06-06-2004, 12:32 PM
 
Emerson Emerson is offline
 

X-Man
  
Join Date: Mar 2004
Location: Atlanta, GA
Posts: 2,209
 

Default

Quote:
Originally Posted by OshkoshJon
Sort by name and sort by count both sort by count... might want to fix that

Here is a fix...

Find:
Code:
$sql_q = mysql_query("select search_text, search_count from search_queries_sorted order by search_count DESC");

And replace it with:
Code:
$sql_q = mysql_query("select search_text, search_count from search_queries_sorted order by " . $HTTP_POST_VARS['sortorder'] . " " . $HTTP_POST_VARS['ascdsc']);

The original post has been update with this fix
__________________
Emerson
Total Server Solutions LLC- Quality X-Cart Hosting
Recommended X-Cart Hosting Provider - US and UK servers
Does your host backup your site? We do EVERY HOUR!!!
Shared Hosting | Managed Cloud | Dedicated Servers
Reply With Quote